我正在使用MAMP PRO和Slim PHP框架。 这是我的项目结构:
我的.htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
如果我尝试使用Postman GET请求: 本地主机:8888 /管理员 我在apache日志中得到404和这个错误: [error] [client :: 1]文件不存在:/ Applications / MAMP / htdocs / admin 但有了这个: 本地主机:8888 / MyApp的/ API / index.php文件/管理 它有效......
我想在这个网址上提出我的要求: localhost:8888 / admin
我尝试了很多东西...... RewriteBase,配置VirtualHost,...... 你能救我吗?
答案 0 :(得分:0)
在Apache配置中,将文档根目录设置为/Applications/MAMP/htdocs/myapp/api
。