更改codeigniter中的网址

时间:2017-09-21 11:27:20

标签: .htaccess codeigniter url routing

我的网址

  

http://localhost/message/Welcome/index

但我想展示

  

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>

请帮我删除网址中间的控制器。 在此先感谢!!!!

1 个答案:

答案 0 :(得分:1)

您只需使用.htaccess文件即可。添加以下规则:

RewriteEngine On
RewriteRule ^(.*)/Welcome /$1 [R=301,L]

这将使用301重定向从您的网址中删除/welcome。离开你:http://localhost/message/index

确保在>测试之前清除缓存