ホームページ  >  記事  >  php教程  >  去掉 CI 框架中的 index.php

去掉 CI 框架中的 index.php

WBOY
WBOYオリジナル
2016-06-06 19:58:321134ブラウズ

利用 url重写,将 index.php 隐藏。 使用 Apache 服务程序,支持 rewrite 在 CI 的根目录建一个 .htaccess 文件 内容: RewriteEngine on RewriteCond $1 !^(index/.php|images|robots/.txt) RewriteRule ^(.*)$ /index.php/$1 [L] // /index.php 这里根据自

利用 url重写,将 index.php 隐藏。

 

使用 Apache 服务程序,支持 rewrite

 

在 CI 的根目录建一个 .htaccess 文件

内容:

//    /index.php 这里根据自己的目录填写

 

然后在 config.php 里修改

 

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

去掉其中的值

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。