I just installed a the patch for the modrewrite but it doesn't seem to be doing anything. I did include the .htaccess file like described.
Thanks for your suggestions...
ModRewrite Patch
ModRewrite Patch
Last edited by sporto on Thu 4. Dec 2003, 04:21, edited 1 time in total.
Thanks for the reply. That was the problem and it works now! . Funny thing was that I looked in that file earlier and there was nothing there about re-write at all. I added $phpwcms["rewrite_url"] = 1; to the file and it made it work.
One other comment about this... I had to play around with my .htaccess file a bit. For some reason it didn't work for me as written. I had to remove extra periods from the file. My .htaccess file had to look like this:
rather than this:
Thanks.
One other comment about this... I had to play around with my .htaccess file a bit. For some reason it didn't work for me as written. I had to remove extra periods from the file. My .htaccess file had to look like this:
Code: Select all
RewriteEngine on
RewriteRule ^(.*).html$ ./index.php?id=$1
RewriteRule ^index.html$ ./index.php
Code: Select all
RewriteEngine on
RewriteRule ^(.*).html$ ../index.php?id=$1
RewriteRule ^index.html$ ../index.php