Any one can give a hand figure it out were is my errror in my clean url.
This code is on my vhost and it's not working as I expected. I have try to rewrite
the code and put in .htaccess file and still is not working.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80 [OR]
RewriteCond %{SERVER_PORT} 8080
RewriteRule ^(.*)$ https://website.com/ [R=301,L]
Alias /success "/var/www/html/success.php"
Alias /alreadyregistered "/var/www/html/alreadyregistered.php"
Alias /checkpassword "/var/www/html/checkpassword.php"
Alias /duplicate "/var/www/html/duplicate.php"
Alias /invaliduser "/var/www/html/invaliduser.php"
This is my new rewrite code I had put on my .htaccess. Can anyone help me what I'm doing wrong here. The alias is notworking at all it's not pulling any .php page as you see in the alias above code. I'll apreaciated your help in advanced.
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
Thanks,
Toldav