我按照此处的说明创建了一个测试 hello world Slim 应用程序。
当我拨打这个电话时,我收到一个 404 错误:
http://my_server/my_app/hello/John
另一方面,当我拨打这个电话时,当我收到“Hello John”消息时,它的效果很好:
http://my_server/my_app/index.php/hello/John
但是,当然,我不想在我的 URL 中出现 index.php ......有什么问题吗?
======= 编辑 =======
我忘了像这样创建 .htaccess 文件(遵循 Slim Framework 文档,并且与 index.php 在同一目录中):
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
现在我得到这个错误:
/physical_path_to_my_files/index.php was not found on this server