Hello,
URL rewriting stopped working for my website (I'm on lotus).
Below are the rules in my .htaccess file, in the root of my public folder.
Basically, I want to rewrite URLs such as
http://www.abc-roster.com/contact to http://www.abc-roster.com/index.php?page=contact
for a few pages
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^index$ index.php
RewriteRule ^home$ index.php
RewriteRule ^download$ index.php/?page=download
RewriteRule ^screenshots$ index.php/?page=screenshots
RewriteRule ^contact$ index.php/?page=contact
RewriteRule ^application$ index.php/?page=ref&file=application
RewriteRule ^manual$ index.php/?page=ref&file=manual
</IfModule>
Going to any of the pages throws a 404 page not found error, instead of redirecting the request to the index.php page.
e.g.
http://www.abc-roster.com/contact
http://www.abc-roster.com/home
I'm pretty sure it was working before.
Thanks for your help
URL rewriting stopped working for my website (I'm on lotus).
Below are the rules in my .htaccess file, in the root of my public folder.
Basically, I want to rewrite URLs such as
http://www.abc-roster.com/contact to http://www.abc-roster.com/index.php?page=contact
for a few pages
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^index$ index.php
RewriteRule ^home$ index.php
RewriteRule ^download$ index.php/?page=download
RewriteRule ^screenshots$ index.php/?page=screenshots
RewriteRule ^contact$ index.php/?page=contact
RewriteRule ^application$ index.php/?page=ref&file=application
RewriteRule ^manual$ index.php/?page=ref&file=manual
</IfModule>
Going to any of the pages throws a 404 page not found error, instead of redirecting the request to the index.php page.
e.g.
http://www.abc-roster.com/contact
http://www.abc-roster.com/home
I'm pretty sure it was working before.
Thanks for your help