вопрос
Родной DLE htaccess. Не получается организовать 301 редирект с страницы site.ru/index.php?do=map на страницу site.ru/karta.html Пробовал три варианта и кучу вариаций, не работает.
1. RewriteRule ^karta.html$ index.php?do=map [L]
2. Redirect 301 /index.php?do=map http://site.ru/karta.html
3. RewriteCond %{REQUEST_URI} ^/index.php?do=map$
RewriteRule ^.*$ http://site.ru/karta.html[R=301,L]
Помогите пожалуйста разобраться где ошибка.
1. RewriteRule ^karta.html$ index.php?do=map [L]
2. Redirect 301 /index.php?do=map http://site.ru/karta.html
3. RewriteCond %{REQUEST_URI} ^/index.php?do=map$
RewriteRule ^.*$ http://site.ru/karta.html[R=301,L]
Помогите пожалуйста разобраться где ошибка.
Проискав полдня нашел правильную строку для htaccess, может кому нужно будет:
RewriteCond %{QUERY_STRING} ^do=map
RewriteRule ^.*$ /karta.html? [R=301,L]