我有一个应用程序,入口是/ var / www / html / quote目录中的index.php。该应用程序使用苗条的框架来传递json api。因此,我使用php -S localhost:8080测试了该应用程序,但是现在我可以上传到托管服务了,因此我希望能够通过键入localhost / quote来测试该应用程序。我在apache2中启用了mod_rewrite。我也将其添加到本地化index.php的目录中 .htaccess文件
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
最后,我修改了apache2.conf文件并像这样更改指令。将AllowOverride更改为All
<Directory /var/www>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
现在,当我键入http://localhost/quote时。我收到“找不到页面” 我想念什么?