PHP头条
热点:

CodeIgniter框架url去index.php


针对apache,支持mode_rewrite可以通过在目录先建立.htaccess去掉url中index.php

.htaccess内容如下:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f   #这个重要,保证css,js正常加载

RewriteCond $1 !^(index\\.php|images|robots\\.txt)

RewriteRule ^(.*)$ /index.php/$1 [L]

然后找到application/config/config.php文件:

将$config['index_page'] = "index.php";改为$config['index_page'] = "";

www.phpzy.comtrue/phpkj/9200.htmlTechArticleCodeIgniter框架url去index.php 针对apache,支持mode_rewrite可以通过在目录先建立.htaccess去掉url中index.php .htaccess内容如下: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f #这个重要,保证css,js正常加...

相关文章

相关频道:

PHP之友评论

今天推荐