Вопрос

Currently I have a RewriteRule in httpd.conf which leads example-domain.org to example-domain2.org:

RewriteEngine On
RewriteRule ^/ http://www.example-domain2.org [R,L]

But I would like to not redirect file requests under www.example-domain.org/downloads/*

Is it possible somehow? Thx.

Это было полезно?

Решение

RewriteEngine On
RewriteRule downloads/ - [L]  # do not rewrite downloads/
RewriteRule ^ http://www.example-domain2.org [R,L]  #redirect anything else
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top