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.
Apache の htaccess を nginx に変換した後、404 エラーが発生します。以下は htaccess コードです。
RewriteEngine On Options +FollowSymlinks RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1 [L]
私を助けてください、私は学習者です
nginx.conf を編集し、vhost にこの行を追加します
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?$1 break; } }