目前,我已經安裝在我的htaccess使example.com/dept/noc去:使用htaccess的條件+ URL重寫
RewriteEngine On
RewriteRule ^([A-Za-z]+)/([A-Za-z]+)$ index.php?dept=$1&n=$2 [QSA]
RewriteCond %{SERVER_PORT} 80
example.com/index.php?dept=dept & N = NOC
我有一個名爲上傳文件夾,我將如何確保URL重寫是不是在爲/上傳/文件夾的效果(例外),因爲
example.com/upload/file.doc不起作用?
添加的RewriteCond與例外? – axk