1. 程式人生 > 其它 >phpstudy搭建專案首頁可以訪問其他頁面404

phpstudy搭建專案首頁可以訪問其他頁面404

1、本人遇到的問題是指定的public目錄下有.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>

把這個加上就好了。
2、第二個原因大概就是你指定目錄沒有這個檔案,導致只能訪問首頁
3、第三個原因就是把你vhost配置檔案中AllowOverride 引數 None 改成 All 。重啟,問題解決了

總結:遇到這個問題。基本就是.htaccess這個檔案的事。大家一定要仔細哦-。-