How do I redirect x.com to y.com, when someone types in x.com or anything x.com
开发者_Python百科Thanks Jean
In your apache hosts configuration:
<VirtualHost *:80>
ServerName y.com *.y.com
Redirect permanent / http://x.com/
</VirtualHost>
How do I redirect x.com to y.com, when someone types in x.com or anything x.com
开发者_Python百科Thanks Jean
In your apache hosts configuration:
<VirtualHost *:80>
ServerName y.com *.y.com
Redirect permanent / http://x.com/
</VirtualHost>
精彩评论