所以我必須像網址:http://localhost/folder_name/home笨:如何在CodeIgniter的URL刪除 '文件夾名稱'
我想刪除/從URL刪除'folder_name'
所以我的網址變成http://localhost/home
。
我已經嘗試此代碼:
RewriteEngine On
RewriteBase/
RewriteRule ^((?!folder_name/).*)$ folder_name/$1 [L,NC,R]
此代碼讓我訪問的URL在http://localhost/home,但在瀏覽器每次經過我按ENTER鍵「的網址。 URL將變成http://localhost/folder_name/home
是否可以'永久刪除'文件夾名稱?
謝謝:)
爲什麼不更改您的虛擬主機設置以將您的域直接指向您的文件夾名稱? – harrrrrrry