CodeIgniter要想实现这个功能,服务器必须支持伪静态。
新建一个.htaccess文件,内容如下:
RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
查看更多关于CodeIgniter利用伪静态隐藏index.php的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did27064