0

大家好,我需要 apache 模式重写的帮助,因为我是新手。其实我不知道如何做到这一点。

这是我的问题

我有一些网址,我想用 apache 编辑它们

1- mywebsite/category.php ---> 我希望该 URL 保持不变,就像它是 mywebsite/category.php?sid=categoryname ---> mywebsite/category/categoryname.html

2- mywebsite/news.php --> 没有修改 mywebsite/news.php?view=1(2,3,4,5....etc 数据库中的 id) ---> mywebsite/news/topic 标题。 html topic header 是消息的标题,将通过 id 从数据库中调用

好吧,谢谢大家的帮助,因为我真的不知道该怎么做。我所能做的就是创建一个htaccess文件^^。

4

1 回答 1

0

在你的.htaccess文件中:


RewriteEngine On

RewriteRule ^/category.php?sid=([^&]+) /category/$1.html [L,R]
于 2009-12-10T13:33:48.717 回答