将 directoryIndex 指向多个字符串
Point directoryIndex to multiple strings
我有 home.php 作为目录索引文件。
可以这样访问:http://localhost/joacmedia/home.php
如果用户类型 http://localhost/joacmedia/index.php
,我如何使服务器指向同一个 home.php
.htaccess 文件如下所示:
Options -Indexes
DirectoryIndex home.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ home.php?url= [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= [L,QSA]
将您的 htaccess 文件保留在 joacmedia
文件夹之外,并尝试遵循以下规则。
请确保在测试您的网址之前清除浏览器缓存。
RewriteEngine ON
RewriteRule ^joacmedia/index\.php home.php [QSA,NC,L]
我有 home.php 作为目录索引文件。
可以这样访问:http://localhost/joacmedia/home.php
如果用户类型 http://localhost/joacmedia/index.php
home.php
.htaccess 文件如下所示:
Options -Indexes
DirectoryIndex home.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ home.php?url= [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= [L,QSA]
将您的 htaccess 文件保留在 joacmedia
文件夹之外,并尝试遵循以下规则。
请确保在测试您的网址之前清除浏览器缓存。
RewriteEngine ON
RewriteRule ^joacmedia/index\.php home.php [QSA,NC,L]