我正在尝试为我的网站配置.htaccess
。
我的网站1中有两个文件夹 - app
,2 - public
。
我想从公共文件夹加载index.php
并限制对app文件夹的所有直接访问
我使用的.htaccess
返回结果403 Forbidden
,但如果我在根目录中移动index.php
它正在运行,我只想指出index.php
在{ {1}}目录并在那里发送所有请求。
public
答案 0 :(得分:0)
我这样解决了这个问题,
对于我管理root
的{{1}}目录,就像给出的代码一样,我们的想法是将所有调用重定向到.htaccess
目录。
public
对于过滤请求,我曾经将第二个Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
放到.htaccess
dir
public