【发布时间】:2013-12-17 17:48:53
【问题描述】:
我已经在 Yii 中完成了一个网站。但问题是网站 url 对 SEO 不友好,并且在谷歌搜索中找不到它的位置。我的 url 为 http://helll.com/Industries?id=1
我想将我的网址更改为http://helll.com/Industries/hospitality-and-tourism,即用帖子名称替换帖子ID,我已经有这样的网址重写
'/Industries'=>'/lriIndustries/See',
like here What will be URL rewrite in yii url manager 我已经将我的 url 改写如下,但它似乎不起作用
'/Industries-<industries_name:.+>'=>'/lriIndustries/See',
echo $_GET['industries_name'];
【问题讨论】:
标签: php yii url-rewriting yii-url-manager