2012-12-05 95 views
0

我有測試項目文件夾名爲「prj」。在這方面,我有一個文件名爲test.php.I想是使用htacess重寫url

http://localhost/prj/test.php?t=123 

應該改寫像

http://localhost/prj/test.php 

任何幫助將不勝感激

+0

可能重複:http://stackoverflow.com/questions/11803411/remove-variable-from-base-url-with-htaccess –

+0

@TimJoyce:不是它的溺愛。我只是想重寫url。不通過刪除查詢字符串重定向到它。 –

+0

你能解釋一下你的需求嗎? – Oussama

回答

1

創建一個.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] 
+0

沒什麼幫助。什麼也沒有發生:( –

+0

1)你的htaccess文件位於何處? 2)確保httpd.config中的AllowOverride設置爲全部。 –

+0

仍然無法達到目標。任何其他建議? –