Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 Slim 用于在 http 下运行良好的 API,但是当我在 https 中请求 URL 时,我收到 404 错误。
我认为这与我的 .htaccess 文件有关,但我不确定。谁能指出我在这里做错了什么。
.htaccess:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [QSA,L]
根据您的服务器配置,当通过 httpd 访问时,服务器可能会提供另一个目录(例如 httpsdocs 而不是 httpdocs)。
您必须更改配置、复制内容或尝试创建从 http 目录到 https 目录的符号链接。