tp5无法隐藏index.php入口文件

一:

官方文件:

  1. <IfModule mod_rewrite.c>
  2. Options +FollowSymlinks -Multiviews
  3. RewriteEngine on
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
  7. </IfModule>

修改后的文件  :

  1. <pre code_snippet_id="2463884" snippet_file_name="blog_20170629_4_2585774" name="code" class="plain"><IfModule mod_rewrite.c>
  2. Options +FollowSymlinks -Multiviews
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
  7. 改了最后一句:RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

二:

RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

或者

RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

上一篇:day 28 面向对象 三种特性之一 多态 鸭子类型 反射(反省)


下一篇:在深谈TCP/IP三步握手&四步挥手原理及衍生问题—长文解剖IP