.htaccess提供静态文件;将所有其他请求路由到同一文件夹中的index.php

时间:2017-04-14 21:45:55

标签: apache .htaccess

我正在寻找一个正常提供所有静态图像的.htaccess文件,但是将任何其他请求路由到与所述.htaccess文件一样位于相同文件夹中的index.php文件。到目前为止,这是我的代码,似乎不起作用。它推迟到文件夹结构中较高的index.php。

RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php
RewriteRule ^index.php/?(.*)$ $1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1?%{QUERY_STRING} [L]

1 个答案:

答案 0 :(得分:0)

由于这是在子文件夹级别,问题是RewriteBase指向根目录。您可以删除RewriteBase指令,也可以将其更改为.htaccess文件所在的文件夹,以便从那时开始重写。