Пробую сделать редирект 301 с адреса
site-name.ru/akcii-i-novinki.php?id_news=18
на адрес
site-name.ru/korrect-face.php
Традиционное решение
Redirect 301 /akcii-i-novinki.php?id_news=18 http://site-name.ru/korrect-face.php
не срабатывает
Насколько я понимаю проблема вот в этих строках настроек в .htacess. Возможно ошибаюсь.
RewriteRule ^articles/([^/]+)/?$ stati_art.php?id_public=$1
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
Полный код .htacess
AddDefaultCharset UTF-8
ErrorDocument 404 /404.php
#php_value error_reporting 7
#php_value session.save_path "/tmp"
#Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.site-name.ru
RewriteRule (.*) http://site-name.ru/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://site-name.ru/ [R=301,L]
RewriteRule ^articles/([^/]+)/?$ stati_art.php?id_public=$1
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
Redirect 301 /akcii-i-novinki.php?id_news=18 http://site-name.ru/korrect-face.php
Redirect 301 /test http://site-name.ru/korrect-face.php