Можно ли произвести редирект на другую страницу без использования mod_rewrite |
[исправить] |
Можно воспользоваться директивой Redirect из mod_alias:
Redirect /dir1 http://test.ru/dir2
Redirect permanent /dir1/ http://test.ru/dir2
RedirectMatch ^/$ http://test.ru/new.html
RedirectMatch .* http://test.ru/new.html
RedirectMatch (.*)\.gif$ http://test.ru$1.jpg
AliasMatch ^/img/(.*) /home/user1/img/$1
|
|
|
05.10.2002
|
Раздел: Корень / Администратору / Сетевые сервисы / WWW, Apache httpd / Редирект, mod_rewrite |