咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
如果你想让你的网站只用一个域名可以访问,比如www.landui.com ,如果别人访问landuitest.net ,会自动跳转到www.landui.com
可以用.htaccess文件来实现,复制下面的内容,粘贴到记事本,修改成你自己的域名,并保存文件名为.htaccess ,如果你的网站已经有.htaccess 这个文件,这把下面的内容增加到你的.htaccess文件里面。
RewriteEngine on
rewritecond %{http_host} ^landuitest.net [nc]
rewriterule ^(.*)$ http://www.landui.com /$1 [r=301,nc]
上传.htaccess文件到你网站目录下面。