如何解决将 directoryIndex 指向多个字符串
我有 home.PHP 作为目录索引文件。
这可以像这样访问:http://localhost/joacmedia/home.PHP
如果用户输入 home.PHP
,如何让服务器指向同一个 http://localhost/joacmedia/index.PHP
.htaccess 文件如下所示:
Options -Indexes
DirectoryIndex home.PHP
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ home.PHP?url=$1 [L,QSA]
解决方法
只需将 index.php
重写为 home.php
RewriteRule ^index.php$ home.php [L]
使用这些设置,您的 htaccess 应如下所示
Options -Indexes
DirectoryIndex home.php
RewriteEngine On
RewriteRule ^index.php$ home.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ home.php?url=$1 [L,QSA]
,
在 joacmedia
文件夹之外保留您的 htaccess 文件并尝试遵循规则。
在测试您的网址之前,请务必清除浏览器缓存。
RewriteEngine ON
RewriteRule ^joacmedia/index\.php home.php [QSA,NC,L]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。