我的网址
但我想展示
hhttp://本地主机/消息/索引
删除控制器名称
我的路线
$route['default_controller'] = 'welcome';
$route['index'] = 'welcome/index';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
试试这个
$ route ['message / send'] =“message / welcome / send”;
我的htaccess
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
请帮我删除网址中间的控制器。 在此先感谢!!!!
答案 0 :(得分:1)
您只需使用.htaccess
文件即可。添加以下规则:
RewriteEngine On
RewriteRule ^(.*)/Welcome /$1 [R=301,L]
这将使用301重定向从您的网址中删除/welcome
。离开你:http://localhost/message/index
确保在>>测试之前清除缓存。