Quote:
Originally Posted by corollasbest
what would I look for specifically in my phpinfo() to tell me mod_rewrite is installed correctly?
|
You should look for "mod_rewrite". But also if it is not mentioned in phpinfo() it could work. Make a simple test:
1. Upload a .htaccess with the following content in your main domain directory (eg.
www.vbranking.com):
Code:
RewriteEngine on
RewriteBase /
RewriteRule ^test.html$ test.php
2. Upload a test.php with the following content:
Code:
<?
echo "mod_rewrite works";
?>
3. If
http://www.yourdomain.com/test.html shows "mod_rewrite works" it should work :nervous: