我有測試項目文件夾名爲「prj」。在這方面,我有一個文件名爲test.php.I想是使用htacess重寫url
http://localhost/prj/test.php?t=123
應該改寫像
http://localhost/prj/test.php
任何幫助將不勝感激
我有測試項目文件夾名爲「prj」。在這方面,我有一個文件名爲test.php.I想是使用htacess重寫url
http://localhost/prj/test.php?t=123
應該改寫像
http://localhost/prj/test.php
任何幫助將不勝感激
創建一個.htaccess文件:
RewriteEngine on
RewriteRule ^prj\/test.php$ prj/test.php?t=123 [NC]
編輯
如果你的htaccess文件位於PRJ文件夾:
RewriteEngine on
RewriteRule ^test.php$ test.php?t=123 [NC]
沒什麼幫助。什麼也沒有發生:( –
1)你的htaccess文件位於何處? 2)確保httpd.config中的AllowOverride設置爲全部。 –
仍然無法達到目標。任何其他建議? –
可能重複:http://stackoverflow.com/questions/11803411/remove-variable-from-base-url-with-htaccess –
@TimJoyce:不是它的溺愛。我只是想重寫url。不通過刪除查詢字符串重定向到它。 –
你能解釋一下你的需求嗎? – Oussama