Forum archive
cant get mod_rewrite working!!
All I am trying to do is get mod_rewrite to work on turnkey linux and so far having no luck.
- I went to the webmin under apache > configure apache modules > I checked rewrite and saved ( I looked to see if it was and is )
- I check my phpinfo file and under Loaded Modules. It is there.
- Uploaded a new .htaccess file to my directory /var/www/projects/jsnew/.htaccess
RewriteEngine on RewriteRule ^index.php$ about_us.php
I should be seing about_us page with inde.php url and I am not.
Is there anything else I need to do from with in webmin?
I think your RewriteRule has to start with a slash:
RewriteRule ^/index.php$ /about_us.php
Try that and see if it helps.