我在Codeigniter 3中創建了一個新的「/ blog」目錄。我想在這個新文件夾中安裝一個新的Wordpress博客。Codeigniter:加載默認靜態頁面
當我嘗試加載新文件夾www.mysite.com/blog/時,出現錯誤404消息。日誌顯示:
ERROR - 2016-07-15 17:42:40 --> 404 Page Not Found: Blog/index
我的.htaccess文件內容爲:
AddDefaultCharset utf-8
RewriteEngine on
RewriteBase/
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
我怎樣才能加載(的index.php)默認情況下我的博客目錄,沒有瀏覽器的地址輸入的index.php?請幫幫我。
你可以嘗試「RewriteBase/blog /」而不是「RewriteBase /」嗎? – Julqas
這個.htaccess文件位於根文件夾中,並且更改爲「RewriteBase/blog /」在www.mysite.com上顯示了Wordpress – user3864215
哦,對不起,你的問題是直截了當地寫的,所以我明白了相反的意思。 – Julqas