MOD在某个特定的URL文件夹之后重写所有URL

时间:2016-10-11 14:56:50

标签: apache mod-rewrite web

我需要将所有带有此特定字符串的请求重定向到其URL地址:“domain.com/subfolder1/”到新位置“subdomain.domain.com” 任何想法如何做到这一点?

我试过了: RewriteRule“^ domain.com / subfolder1 /(.*)”“http://subdomain.domain.com/ $ 1”[R,L = 301] 但没有运气

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

重定向就足够了。在example.com的virtualhost中,您可以定义:

Redirect permanent /subdirectory1/ http://subdomain.example.com/

如果您不希望原始请求在目的地结束,请使用:

RedirectMatch permanent ^ http://subdomain.example.com/