美文网首页
CodeIgniter、ciPHP框架,去掉index.php

CodeIgniter、ciPHP框架,去掉index.php

作者: 可乐_加冰_ | 来源:发表于2019-11-14 11:48 被阅读0次

    修改网站:.htaccess文件即可

    DirectoryIndex index.php

    RewriteEngine on

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

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

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

    相关文章

      网友评论

          本文标题:CodeIgniter、ciPHP框架,去掉index.php

          本文链接:https://www.haomeiwen.com/subject/mjfrictx.html