使用mod-rewrite重写url而不重定向

时间:2017-04-17 06:11:47

标签: .htaccess url-rewriting

我想在没有页面刷新的情况下更改网址,并在.htaccess中重定向

我只需要更改网址:

来自example.domain.com

www.newdomain.com

1 个答案:

答案 0 :(得分:0)

您可以通过apache代理模块(P标志)将 example.domain.com 重写为 newdomain.com 。如果启用了mod-proxy,则可以在 example.domain.com/.htaccess 中使用以下规则:

RewriteEngine on
RewriteRule ^ http://www.newdomain.com%{REQUEST_URI} [P]