我刚刚上线了一个网站,但我需要限制我的 IP 地址之外的用户访问主页以外的所有内容。
我想使用 .htaccess 来做到这一点。
到目前为止我已经想到了这个但它不起作用:
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
<Files /index.php>
Order Allow,Deny
Allow from all
</Files>
我想让全世界都能看到的文件位于此处:
/var/www/html/mysite/web/wp-content/themes/ubergrid/index.php。
.htacess 文件位于此处:
/var/www/html/我的网站/web/
Wordpress 将所有内容重写为 /index.php,这使事情变得复杂。
有任何想法吗?