我在托管中有一个主域名。假设域名为example.com
然后我在该主机上添加了一个新域名。假设新域名在example2.com
所以在cPanel中生成:
/home/index.php
/home/example2.com/dir/
如果有人访问我的网站,请执行以下操作:example.com/example2.com/
然后显示的是我的网站example2.com
如何阻止访问example.com/example2.com/
和example.com/example2.com/dir/file/test.html
但如果直接访问网站example2.com
不会引发问题吗?
我希望有一个解决方案使用.htaccess
或类似的东西。
答案 0 :(得分:0)
You can try using an .htaccess
# Redirect example.com/example2
RewriteCond %{HTTP_HOST} ^example\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^example2\.com$ "https\:\/\/example\.com\/" [R=301,L]
OR
# Return a 403 response for example.com/example2
RewriteEngine On
RewriteRule ^example2\.com$ - [R=403,NC,L]