MVC公用文件夹htaccess无法正常工作

时间:2017-01-07 00:33:53

标签: php apache .htaccess mod-rewrite

我最近将index.php(处理路由的文件)和css / js / font资产移动到public/文件夹。出于安全考虑,我只希望可以访问此public/文件夹中的项目。当我意识到我可以访问mysite.com/composer.lock并使用旧.htaccess和文件夹设置查看作曲家锁定文件时,我遇到了这个问题。

这就是我想要的

如果我访问mysite.com/car/create,我希望它实际指向mysite.com/public/index.php?path=car/create

如果我链接到mysite.com/css/style.css等资源,我希望它真正指向mysite.com/public/css/style.css

这是我的文件夹结构

MVC Folder Structure

这是我的.htaccess,它根本不起作用

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ public/index.php?path=$1 [L,QSA]
</IfModule>

我不知道如何解决这个问题。它只是生成空页面,我仍然可以直接访问根目录等文件。任何帮助都表示赞赏。

1 个答案:

答案 0 :(得分:3)

您现有的指令特别避免重写现有文件的请求,因此它仍然可以访问根目录中的文件。它还会将静态资源重写为public/index.php?path=,这可能会失败。

请尝试以下方法:

RewriteEngine On

# Stop processing if already in the /public directory
RewriteRule ^public/ - [L]

# Static resources if they exist
RewriteCond %{DOCUMENT_ROOT}/public/$1 -f
RewriteRule (.+) public/$1 [L]

# Route all other requests
RewriteRule (.*) public/index.php?path=$1 [L,QSA]