如何删除codeigniter中的Controller和方法URL

时间:2016-09-12 14:01:45

标签: php codeigniter url codeigniter-2

这是我当前的网址http://www.example.com/agent/index/$id, 我想改变这个http://www.example.com/demo_name(by agent name) 请提出你的答案。

1 个答案:

答案 0 :(得分:0)

我不确定我是否理解。但如果你想省略"索引"在网址中。您需要使用.htaccess文件。这是一个例子:

RewriteEngine on 
RewriteCond $1 !^(index.php|assets|robots.txt) 
RewriteRule ^(.*)$ /directory/index.php/$1 [L]