在你的根目錄下,創建具有以下代碼的的.htaccess。這將把你所有的http請求映射到/ wp /目錄。
# ==>Initializaion…
Options -Indexes
Options +FollowSymLinks
RewriteEngine On
RewriteBase/
# ==>Without this line, your /wp/ directory may become visible sometimes
DirectorySlash Off
# ==>Map everything to your /wp/ directory
RewriteRule (.*) /wp/$1 [L]
您還想從URL中隱藏/ wp/directoy。爲此,創建你的/ wp /目錄另一個的.htaccess和寫入以下行:
# ==>Initializaion…
Options +FollowSymLinks
RewriteBase/
# ==>Set default file
DirectoryIndex index.php
#==> If the requested resource is NOT a file, or the URL contains 「/wp/」 anywhere in it,
# then serve the default file instead
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{THE_REQUEST} /wp/
RewriteRule .* index.php [L]
如果有人類型「/ WP /」,在地址欄的任何地方,他們不會看到它是什麼。相反,他們會看到你的主頁。
您可能需要調整代碼以滿足您的要求。
爲什麼不修改你的Codeigniter路由? – CodeGodie
你能複製和粘貼你的命令提示符'樹'文件結構 - 命令在這裏?這將使我們更好地瞭解您的目錄中實際存在的內容。 – CodeGodie
是的PLZ指南,在這種情況下,我如何修改CI路由。 –