2012-01-18 32 views
0

我已经下载解压缩燃料,并把它放在一个虚拟主机(虚拟主机X)谈到了作为fuel.site 但不是欢迎页面,它只是出现一个目录列表安装fuelphp 403错误

changelog.md 
docs(folder) 
oil 

如果我尝试手动去公用文件夹,我得到一个403错误 我需要配置什么来让它运行?

我甚至试过.htaccess文件,

<IfModule mod_rewrite.c> 
    RewriteEngine on 
    RewriteBase /fuel/public 
    RewriteRule ^(.*)$ /fuel/public/public/index.php/$1 [L] 
</IfModule> 

在其他网站上

回答

0

对不起你们,我有一些错误,在我的Apache安装使用甲基苯丙胺现在的工作很好,谢谢您的帮助

0

建议如果你不能在这里找到了答案:http://docs.fuelphp.com/installation/instructions.html#manual

你能告诉我DIR/filestructure?公众/公众似乎有点偏离。重写基地可能只是/。就像这样:

<IfModule mod_rewrite.c> 
    RewriteEngine on 
    RewriteBase/
    RewriteRule ^(.*)$ /fuel/public/index.php/$1 [L] 
    # Sometimes it's: RewriteRule ^(.*)$ /fuel/public/index.php?/$1 [L] 
</IfModule>