htaccess redirect or rewrite with "?start=10 in URL

时间:2015-07-28 16:46:03

标签: .htaccess

I need to redirect http://sitename.com/site-categories/78-sitename?start=10 to http://sitename.com.

Any direction will be much appreciated.

1 个答案:

答案 0 :(得分:0)

Add this to your /htaccess file :

RewriteEngine On
RewriteCond %{THE_REQUEST} /site-categories/78-sitename\?start=10 [NC] 
RewriteRule ^ /? [NC,L,R]