我在 apache 中创建 pernament (301) 重定向时遇到问题:
我有 2 个域:
olddomain.com
有许多子域
newdomain.com
我想做重定向,如:
如果用户输入http://anysubdomain.olddomain.com
应该被重定向到http://anysubdomain.newdomain.com
如果用户输入http://olddomain.com/something
应该被重定向到http://newdomain.com/something
如果用户输入http://olddomain.com/different/index.html
应该被重定向到http://newdomain.com/different/index.html
如果用户输入http://example.olddomain.com/ex/index.html
应该被重定向到http://example.newdomain.com/ex/index.html
我不知道我应该如何设置:
<VirtualHost *:80>
ServerName olddomain.com
</VirtualHost>
问候