2017-04-18 107 views
0

我有一個域名,說在Hostgator Cpanel VPS服務器上託管的abcdefgh.com。它有一個文件夾public_html/abcdefgh.comYii2部署Hostgator Cpanel VPS服務器不能正常工作

以下是部署我的yii2網站的圖片,但我無法在網站上獲得結果。

我以前在共享主機上部署Yii2應用程序的方法與複製粘貼文件夾的方法相同,但在VPS服務器中,我很想知道這是什麼問題?

1. HostGator的交友VPS服務器部署

enter image description here

2.輸出

enter image description here

3.服務器錯誤日誌

Mon Apr 17 22:48:01.706049 2017] [autoindex:error] [pid 32221] [client 117.208.9.75:49825] AH01276: 
Cannot serve directory /home/abc/public_html/abcdefgh.com/: No matching DirectoryIndex 
(index.php,index.php5,index.php4,index.php3,index.perl,index.pl,index.plx,index.ppl,index.cgi,index.jsp,index.js,index.jp,index.phtml,index.shtml,index.xhtml,index.html,index.htm,index.wml,Default.html,Default.htm,default.html,default.htm,home.html,home.htm) found, and server-generated directory index forbidden by Options directive 
  • .htaccess文件

    Options -Indexes 
    
    # Rewrite engine 
    RewriteEngine On 
    
    # condition with escaping special chars 
    RewriteCond $1 !^(index\.php|robots\.txt|favicon\.ico) 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] 
    
  • +0

    你是什麼.htaccess規則? –

    +0

    用.htaccess文件詳細信息更新了問題。 –

    回答

    0

    從.htaccess文件刪除此:

    Options -Indexes 
    

    保存文件,然後重試!

    +0

    非常感謝您的回覆!波格丹,.我會盡力讓你知道! –

    +0

    不行,它不起作用 –

    +0

    然後嘗試使用選項+索引 –

    相關問題