1. 程式人生 > >tp5 url跳轉沒有index.php的問題

tp5 url跳轉沒有index.php的問題

問題出在public資料夾下的.htaccess檔案上

1,首先把..htaccess檔案放在和index.php入口檔案相同的路徑層級下

2,修改.htaccess檔案內容為:

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

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] 
</IfModule>