如何使用.htaccess指向目录以加载索引

时间:2015-12-17 08:28:29

标签: php apache .htaccess

我正在尝试为我的网站配置.htaccess

我的网站1中有两个文件夹 - app,2 - public

我想从公共文件夹加载index.php并限制对app文件夹的所有直接访问

我使用的.htaccess返回结果403 Forbidden,但如果我在根目录中移动index.php它正在运行,我只想指出index.php在{ {1}}目录并在那里发送所有请求。

public

1 个答案:

答案 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