Heim >Backend-Entwicklung >PHP-Tutorial >CodeIgniter(CI)去掉默认url中的indexphp

CodeIgniter(CI)去掉默认url中的indexphp

WBOY
WBOYOriginal
2016-07-29 08:51:181022Durchsuche

1.打开apache的配置文件,conf/httpd.conf :

LoadModule rewrite_module modules/mod_rewrite.so

把该行前的#去掉。

2.搜索 AllowOverride None(配置文件中有多处),看注释信息,将相关.htaccess的该行信息改为:

AllowOverride All

3.在index.php,system的同级目录下,建立.htaccess,文件内容

<ifmodule rewrite_module>
    Options +FollowSymLinks
    IndexIgnore */*
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php
</ifmodule>
4. 修改application/config/config.php
$config['index_page'] = 'index.php';

改成

$config['index_page'] = '';


以上就介绍了CodeIgniter(CI)去掉默认url中的indexphp,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:header"Location:loginphp"Nächster Artikel:PHP读取目录树