htaccess help...
htaccess help...
- Started
- Last post
- 1 Response
- effour
This isn't working:
Redirect permanent /categories.php?cat=2956 /http://www.mysite.com/pages.php...It has something to do with the categories.php?cat=2956 any one know how I can make this work??
thx
- fugged0
You can't use query strings like that with mod_alias. Need to use mod_rewrite. Try this:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^cat=2956$
RewriteRule ^categories\.php$ http://www.mysite.com/pages.php [R=301,L]