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.
http で非常にうまく機能する API に Slim を使用していますが、https で URL を要求すると 404 エラーが発生します。
私の .htaccess ファイルに何か関係があると思いますが、よくわかりません。ここで私が間違っていることを誰でも指摘できますか。
.htaccess :
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [QSA,L]
サーバーの構成によっては、httpd 経由でアクセスしたときにサーバーが別のディレクトリを提供する場合があります (例: httpdocs ではなく httpsdocs)。
構成を変更するか、コンテンツをコピーするか、http ディレクトリから https ディレクトリへのシンボリック リンクを作成する必要があります。