【发布时间】:2016-09-12 14:01:45
【问题描述】:
这是我当前的网址http://www.example.com/agent/index/$id,
我想改变这个http://www.example.com/demo_name(by agent name)
请提出你的答案。
【问题讨论】:
标签: php codeigniter url codeigniter-2
这是我当前的网址http://www.example.com/agent/index/$id,
我想改变这个http://www.example.com/demo_name(by agent name)
请提出你的答案。
【问题讨论】:
标签: php codeigniter url codeigniter-2
我不确定我是否理解。但是,如果您想省略 url 中的“索引”。您需要使用 .htaccess 文件。这是一个例子:
RewriteEngine on
RewriteCond $1 !^(index.php|assets|robots.txt)
RewriteRule ^(.*)$ /directory/index.php/$1 [L]
【讨论】: