可取得index的版面,但其他的route,如 hello便不能。
tp.findfindme.com/public 是可以指向主頁
但
tp.findfindme.com/public/hello 出現找不到模塊public
怎樣解決?
我已經在 public/.htaccess 加入
<IfModule mod_rewrite.c>
Options +FollowSymli
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
最佳答案