2012-06-03 37 views
-2

你好嗎?更改爲字符串url php

我想改變我的網站的鏈接,因爲它是非常醜陋的,我希望它是像WordPress,我不知道如何可以改變它,所以我請你幫助我,請

http://example.com/?id=43434 =>http://example.com/?category=sport

它如何更改爲:

http://example.com/post/43434 =>http://example.com/category/sport

感謝

回答

2

你可以這樣做,

RewriteEngine on 
RewriteRule ^post/(\d+) index.php?id=$1 [L] 
RewriteRule ^category/([a-zA-Z0-9]+) index.php?category=$1 [L] 

我也使用PHP框架的推薦。他們可以很容易地使用美麗的網址。你可以從codeigniter開始。

此外,這是一個初學者的好文章:http://www.workingwith.me.uk/articles/scripting/mod_rewrite