我有一个使用域映射的服务器设置,因此许多站点都位于同一个/public_html/
中。其中一个域 example.com 有专门针对它的应用,位于:/public_html/foobar/
。如何编写404其他域访问此文件夹的.htaccess条件。
在伪,我基本上寻找:
if the request is “/foobar/“
if the domain isn’t requested from “example.com”
send 404
答案 0 :(得分:1)
RewriteEngine on
RewriteCond %{HTTP_HOST} !^(www\.)*example\.com [NC]
RewriteRule ^foobar/ - [R=404,L]