我已经下载了解压缩的燃料并将其放置在虚拟主机(虚拟主机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>
在其他网站上推荐
答案 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)