Answer the question
In order to leave comments, you need to log in
Why redirect to home? Where is the mistake?
There is a path mysite.ru/news?limitstart=0
need to get rid of ?limitstart=0
I try:
RewriteCond %{QUERY_STRING} ^limitstart=0$
RewriteRule ^news http://mysite.ru/news? [R=301,L]
Answer the question
In order to leave comments, you need to log in
Got this option
RewriteCond %{QUERY_STRING} (^|&)limitstart=0($|&)
RewriteRule ^news$ /news? [L,R=301]
RewriteCond %{QUERY_STRING} ^limitstart=0$
#если гет запрос
RewriteCond %{REQUEST_URI} ^news=0$
# И ньюс
RewriteRule ^.* http://mysite.ru/news? [R=301,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question