我在本地用Apache搭建thinkPHP5
重写路由后访问报The requested URL / was not found on this server.
我入口文件是有.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]
</IfModule>
那为什么还会报这个错了