安装fuelphp 403错误

时间:2012-01-18 05:20:28

标签: php fuelphp

我已经下载了解压缩的燃料并将其放置在虚拟主机(虚拟主机X)中它作为燃料。 但不是欢迎页面,它只是出现在目录列表中

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>

在其他网站上推荐

2 个答案:

答案 0 :(得分:0)

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

你能告诉我目录/文件结构吗?公众/公众似乎有点偏僻。重写基础应该只是/。像这样:

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

答案 1 :(得分:0)

抱歉,我在使用mamp的apache设置中遇到了一些错误,现在工作正常,感谢您的帮助