gpt4 book ai didi

php - 如何从 url 中删除 Controller 名称,使其在 codeigniter 中变得干净

转载 作者:可可西里 更新时间:2023-11-01 12:47:03 24 4
gpt4 key购买 nike

我有以下网址..

http://localhost/ci/site_controller/home

我想从 url 中删除 site_controller controller 导致..

 http://localhost/ci/home

我如何在 CodeIgniter 中执行此操作?

注意:如果你问我尝试了什么,而不是我刚刚在 Google 上搜索过,因为我不知道如何使用 mod_rewrite。

编辑

我的 routes.php 中有这个

$route['default_controller'] = "site_controller/home";
$route['ci/home'] = 'ci/site_controller/home';
$route['404_override'] = '';

但还是不行!

.htaccess

RewriteEngine On
RewriteBase /ci/
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

ErrorDocument 404 /index.php

最佳答案

你可以为每个 url 设置你的路由:

在你的 config/routes.php 文件中,像这样设置每个页面:

$route['ci/home'] = "ci/site_controller/home";

关于php - 如何从 url 中删除 Controller 名称,使其在 codeigniter 中变得干净,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12863095/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com