如何将index.php用于目录 - htaccess

时间:2016-04-13 17:24:58

标签: apache .htaccess mod-rewrite

我有一个名为' appfolder'的目录。 我使用以下.htaccess来使用每个未知文件 index.php

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

如果我打开domain.com/appfolder,它会给我默认的apache禁止页面,而不是使用index.php

如何为 .htaccess

中的目录设置 index.php

1 个答案:

答案 0 :(得分:1)

  

如何设置将index.php用于.htaccess

中的目录

删除此条件:

RewriteCond %{REQUEST_FILENAME} !-d

完整.htaccess:

RewriteEngine On
RewriteBase /

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]