【发布时间】:2015-03-14 19:43:29
【问题描述】:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ api/index.php [QSA,L]
我使用了 Slim 微框架的示例 .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
并在 index.php 之前添加了api,现在我的应用程序无法运行。为什么?
【问题讨论】: