1. 程式人生 > >tp5隱藏入口檔案index.php

tp5隱藏入口檔案index.php

為什麼要隱藏入口檔案

使頁面url美觀,方便搜尋引擎收錄

具體實現

在index.php同級目錄下新建.htaccess(預設自帶)

新增如下內容

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  #RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
  RewriteRule
^(.*)$ index.php?s=$1 [QSA,PT,L] </IfModule>