Conditional Directory Index In Htaccess
- by icelizard
This relates to the question in:
http://stackoverflow.com/questions/1599717/conditional-directoryindex-in-htaccess
The answer states that the following should work:
SetEnvIf Remote_Addr ^127\.0\.0\.0$ owner
<IfDefine owner>
DirectoryIndex index.html
</IfDefine>
<IfDefine !owner>
DirectoryIndex index.php…