apache域名重定向
最近遇到域名重定向问题:
为了将www.test.com重定向为http://www.new.com/hehe.php
这是我的重定向代码:
以上代码表示,
所有输入:www.test.com
重定向为:http://www.new.com/hehe.php
你成功了么;
为了将www.test.com重定向为http://www.new.com/hehe.php
这是我的重定向代码:
<VirtualHost *:80>
ServerName www.test.com
ServerAlias www.test.com
RedirectMatch ^/$ http://www.new.com/hehe.php
</VirtualHost>
以上代码表示,
所有输入:www.test.com
重定向为:http://www.new.com/hehe.php
你成功了么;