Кто знает как в апаче настроить редирект для конкретной страницы? Пример: Пользователь заходит на страницу domain.com/aaa.php?id=1000 и редиректится на domain.com/bbb.php Стандартная команда Redirect /aaa.php?id=1000 http://domain.com/bbb.php не срабатывает...
доках так RewriteEngine on RewriteRule ^/foo\.html$ bar.html [R] Redirect /foo.html /bar.html ------------------------------------------ Resource Moved to Another Server ------------------------------------------------ RewriteEngine on RewriteRule ^/docs/(.+) http://new.example.com/docs/$1 [R,L] #With RedirectMatch RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1 #With RedirectMatch RedirectMatch ^/docs/(.*) http://new.example.com/docs/$1 копать сюда