Forum Moderators: phranque
I'm using:
redirect 301 /forum/viewforum.php?f=20 [domain.com...]
I get the error message:
Not Found
The requested URL /forum/viewforum.php was not found on this server.
Any help would be greatly appreciated!
If you have access to mod_rewrite, you could try:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{QUERY_STRING} ^f=20
RewriteRule ^/forum/viewforum\.php$ http://www.domain.com/forum/forumdisplay.php?f=25
Jim