Code: Select all
RewriteEngine On
RewriteRule ^forum(/)?$ forum.phpTry to add..
Code: Select all
RewriteEngine On
RewriteRule ^forum/([0-9])/.+$ forum.php?cat=$1 [L]
RewriteRule ^forum(/)?$ forum.php [L]Here's where the screwy part comes in
Code: Select all
RewriteEngine On
RewriteRule ^forum/([0-9])/.+$ forumz.php?cat=$1
RewriteRule ^forum(/)?$ forumz.phpCode: Select all
RewriteEngine On
RewriteRule ^forum/([0-9])/.+$ forumz.php?cat=$1
RewriteRule ^forum(/)?$ forumz.php
asdfadsfaWhy isn't it respecting the changes, or reflecting the bad urls I put in, or making the correct rewrite rules work?