2013-07-19 96 views
1

我有一個網站,搜索結果中顯示的網址像

如何更改網址爲.html

http://mysite.com/index.php?SearchBox=Tum%20Hi%20Ho

如何動態更改URL,以類似

http://mysite.com/tum-hi-ho.html

請幫忙。

+1

你使用的HTTP服務器? Apache的?考慮使用'mod_rewrite' –

+0

你試過了什麼?你希望它在瀏覽器地址欄中生效,或者只是想通過輸入顯示給用戶。你應該注意用正則表達式來處理你的在任何情況下,網址 – bugwheels94

+0

.htaccess&重寫規則 – MLeFevre

回答

1

使用.htaccess文件Apache服務器上工作時,務必mod_rewrite的啓用。

試試沿着這些線路:

RewriteEngine on 

RewriteRule ^/(.*).html$ ?SearchBox=$1 [L]