在codeigniter中有沒有文件在URL中調用。所有Codeigniter所做的是使用MVC結構來渲染視圖。
以及如果您訪問根文件夾(index.html或index.php)上的任何內容,它將重定向到應用程序文件夾。然後默認控制器是觸發。
CZ根有文件調用index.php
,那裏你可以看到
$application_folder = 'application';
$system_path = 'system';
而且你可以看看這個
- 路線 -
config/routes.php
- 控制器 -
controller/
- 模型 -
model/
- view -
view/
我們使用.htaccess
刪除URL中的index.php
。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
,如果你想添加URL的.html
或.php
年底
在config/config.php
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/urls.html
*/
$config['url_suffix'] = '';
湖中有沒有重定向選項? –
那我該如何重定向或觸發呢? –
什麼重定向?我們使用.htaccess刪除index.php中的URL –