我已經寫了下面的代碼在我的htaccess index.php文件:重定向到根
RewriteRule ^(.*)/$ $1
RewriteCond %{REQUEST_URI} !^index.php.*$
RewriteRule ^(.*)$ /index.php?route=$1 [END]
它可以完美的每一條路徑,除了存在目錄。例如,如果我輸入http://localhost/profilepic
並且這樣的目錄實際存在,它將重定向到到http://localhost/profilepic/?route=profilepic
,但我希望它是隱含轉換爲http://localhost/index.php?route=profilepic
。
在此先感謝。
謝謝Jon!這解決了這個問題;) – Javid