Quote:
Originally Posted by Kirk Y
Doesn't look to be reversed.. :erm:
Smarter way would be to use .htaccess redirects. Try something like this:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} yourdomain.com
RewriteCond %{REQUEST_URI} ^/(.*)$
RewriteRule .* http://yourdomain.com/forum/%1 [R]
|
That was my thinking too
Unfortunately this will redirect any requests for any file in root won't it? I'd need to specify the files (showthread,showpost etc) individually?
I could also fill the root with a dummy showpost.php etc taking the p value passed and redirecting the the real file.
Maybe it's just not worth it
Cheers for the help.:up: