如何将子域名重定向到任意 URL(Apache2 和 Ubuntu)

如何将子域名重定向到任意 URL(Apache2 和 Ubuntu)

我想在 apache2 上将我的“http://www.mysite.com”重定向到“http://www.newdomain.com/Login.html”。请帮我,如何做到这一点。我不知道如何使用 RewriteCond 和 RewriteRule。请帮忙。

答案1

开启Apache重写:

sudo a2enmod rewrite

编辑您的 Apache 配置文件...

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.mysite.com$ [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/Login.html [R=301,L]

301 = 永久重定向

重新启动 Apache。

答案2

简单的方法

创建一个名为的文件,index.php内容如下:。 如果您觉得太难,则不需要使用 ModRewite。;)<?php header('Location: http://www.newdomain.com/Login.html'); ?>

相关内容