Quote:
Originally Posted by AWS
Isapi Mod Rewrite is what you want. You can get it at http://www.helicontech.com/. The free version is all you'll need. I bought a license to full version so I could use mod_proxy and per site rules. With the free version rules for all sites go into a global .ini file.
|
AWESOME!!! trying it out now
ok, installed and configured as such:
RewriteRule /f(\d+)/s /forums/forumdisplay.php\?forumid=$1 [L]
RewriteRule /t(\d+)/s\.html /forums/showthread.php\?threadid=$1 [L]
RewriteRule /s /forums/index.php
RewriteRule /f(\d+)/forumdisplay.php\?=s&forumid=(\d+) /index.php [L]
RewriteRule /t\d+/(forumdisplay.php.*) /forums/$1 [L]
RewriteRule /t\d+/(attachments.php.*) /forums/$1 [L]
RewriteRule /f\d+/(showthread.php.*) /forums/$1 [L]
RewriteRule /f\d+/(forumdisplay.php.*) /forums/$1 [L]
RewriteRule /f\d+/(attachments.php.*) /forums/$1 [L]
RewriteRule /f\d+/(index.php.*) /forums/$1 [L]
RewriteRule /forumdisplay.php\?=s&forumid=(\d+) /index.php
RewriteRule /(forumdisplay.php.*) /forums/$1 [L]
RewriteRule /(attachments.php.*) /forums/$1 [L]
RewriteRule /(showthread.php.*) /forums/$1 [L]
RewriteRule /(forumdisplay.php.*) /forums/$1 [L]
RewriteRule /(attachments.php.*) /forums/$1 [L]
RewriteRule /(newthread.php.*) /forums/$1 [L]
RewriteRule /(newreply.php.*) /forums/$1 [L]
RewriteRule /(memberlist.php.*) /forums/$1 [L]
RewriteRule /(search.php.*) /forums/$1 [L]
RewriteRule /f(\d+)\.html /forums/forumdisplay.php\?forumid=$1 [L]
RewriteRule /t(\d+)\.html /forums/showthread.php\?threadid=$1 [L]
RewriteRule /forum.html /forums/index.php [L]
RewriteRule /archive.html /archive.php [L]
RewriteRule /t(\d+)--(\d+)\.html$ /forums/showthread.php\?threadid=$1&pagenumber=$3 [L]
RewriteRule /t(\d+)-(\d+)-(\d+)\.html$ /forums/showthread.php\?threadid=$1&pagenumber=$3 [L]
RewriteRule /f(\d+)-(\d+)\.html$ /forums/forumdisplay.php\?forumid=$1&daysprune=1000&sortor der=&sortfield=lastpost&perpag e=25&pagenumber=$2 [L]
RewriteRule /forums/t(\d+)-(\d+)&pagenumber=(\d+) /forums/showthread.php\?threadid=$1&pagenumber=$3 [L]
RewriteRule /forums/f(\d+)&pagenumber=(\d+) /forums/forumdisplay.php\?forumid=$1&pagenumber=$2 [L]
RewriteRule /forums/t(\d+)-(\d+)--(\w*)-&pagenumber=(\d+) /forums/showthread.php\?threadid=$1&highlight=$3&pagenumbe r=$4 [L]
But it's not doing anything at all??
Anyone know ? Thanks!