I am not able to get URL redirection to work. It appears to be a problem with my .htaccess
file. I am using WampServer.
Following is the code in .htaccess:
RewriteEngine on RewriteRule ^contactus index.php?file=c-contactus
I am not able to get URL redirection to work. It appears to be a problem with my .htaccess
file. I am using WampServer.
Following is the code in .htaccess:
RewriteEngine on RewriteRule ^contactus index.php?file=c-contactus
put a / before index.php?file=c-contactus
so it becomes:
/index.php?file=c-contactus
or
RewriteRule ^contactus$ index.php?file=c-contactus