-2

你好吗?

我想改变我网站的链接,因为它很丑,我希望它像wordpress一样,我不知道如何改变它,所以请你帮助我

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

如何将其更改为:

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

谢谢

4

1 回答 1

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

于 2012-06-03T17:23:08.080 回答