2012-01-18 34 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>