0

我正在使用 CodeIgniter,我想重定向这样的链接:

example.com/?p=25

对此:

example.com/25

如何做到这一点?

4

2 回答 2

1

http://www.askaboutphp.com/58/codeigniter-mixing-segment-based-url-with-querystrings.html

或者

创建这样的网址:http: //yyyy.com/article/finishing-dan-snapshop-salkulator

将此代码添加到 routes.php $route['article/(:any)'] = "article/readmore/$1";

描述:1.文章:类名 2.readmore:类文章中的方法 3.$1:从 uri 段 2 值中获取值

于 2013-05-15T19:42:29.390 回答
0

它的 .htaccess 重写规则。确保你已经激活了 mod_rewrite 。然后把这一行放到网站应用程序根 .htaccess 文件中

RewriteRule ^/([0-9]+)/?$ p=$1 [NC,L] # 处理产品请求

于 2013-05-15T19:38:28.130 回答