-3
這是我當前的網址http://www.example.com/agent/index/$id
, ,我想更改此http://www.example.com/demo_name(by agent name)
請建議您的答案。如何刪除代碼管理器中的控制器和方法URL
這是我當前的網址http://www.example.com/agent/index/$id
, ,我想更改此http://www.example.com/demo_name(by agent name)
請建議您的答案。如何刪除代碼管理器中的控制器和方法URL
我不確定我是否理解。但是如果你想在url中省略「索引」。您需要使用.htaccess文件。這是一個例子:
RewriteEngine on
RewriteCond $1 !^(index.php|assets|robots.txt)
RewriteRule ^(.*)$ /directory/index.php/$1 [L]
請參閱:http://www.codeigniter.com/user_guide/general/routing.html –