1
我將如何在apache 2.4.9中向所有URL添加一個假文件夾?mod_rewrite:向所有網址添加一個「假文件夾」?
實施例:
http://localhost/index.html
更改
http://localhost/folder/index.html
?
我將如何在apache 2.4.9中向所有URL添加一個假文件夾?mod_rewrite:向所有網址添加一個「假文件夾」?
實施例:
http://localhost/index.html
更改
http://localhost/folder/index.html
?
將這個代碼在你DOCUMENT_ROOT/.htaccess
文件:
RewriteEngine On
RewriteRule ^/?folder(/.*)?$ /$1 [L,NC]
我無法不把這個虛擬主機中的conf文件? –
是的,你可以把編輯的規則放在conf文件中(需要Apache重啓) – anubhava
嗯,它似乎沒有工作。 –