如何使用nginx和php编写漂亮的永久链接

时间:2012-03-28 14:09:11

标签: php rss nginx

我正在为我的一个客户网站“example.com”开发自定义RSS Feed,为此,Feed网址会使用查询字符串来自定义Feed,例如

http://example.com/feeds/rss_feed.php?num=20&store=2998 

我希望将这些网址转换为

http://example.com/feeds/rss_feed.php/php/num/20/store/2998/ 

对此事的任何帮助都会非常感激。

1 个答案:

答案 0 :(得分:0)

您必须在网站配置中创建其他部分。不要忘记在进行更改后重新启动nginx。

location ~* ^/feeds/rss_feed.php/(.*)$ {
rewrite ^/feeds/rss_feed.php/php/num/(\d+)/store/(\d+)/$ /feeds/rss_feed.php?num=$1&store=$2 last;
}