更改网址链接

时间:2016-07-21 10:59:40

标签: php regex .htaccess

在我的网站上,我有像http://example.com/news/view/1183这样的链接,我想将它们修改为http://example.com/rozvagy/1183,其中1183是id并且它总是会改变,我怎么能通过修改.htaccess来做到这一点?

我试过了,

RewriteRule ^rozvagy/([0-9]+) /news/view/$1 [L] 

1 个答案:

答案 0 :(得分:0)

请在.htaccess文件中使用以下代码。

RewriteEngine On    
RewriteRule ^rozvagy/([^/]+) /news/view/$1 [NC,L,QSA]

如果您有任何疑问,请与我们联系。