这与以下问题有关:
https://stackoverflow.com/questions/1599717/conditional-directoryindex-in-htaccess
答案表明以下应该有效:
SetEnvIf Remote_Addr ^127\.0\.0\.0$ owner
<IfDefine owner>
DirectoryIndex index.html
</IfDefine>
<IfDefine !owner>
DirectoryIndex index.php
</IfDefine>
我不确定这是否有效,Env var 的设置确实有效,但无论我从 DirectoryIndex 访问该站点的 IP 始终是 index.php
条件有问题还是我应该使用其他东西?
提前致谢
我最终使用以下内容来实现我想要的
谢谢!