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.
我收到 404 错误,将 apache 的 htaccess 转换为 nginx 后,下面是我的 htaccess 代码
RewriteEngine On Options +FollowSymlinks RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1 [L]
请帮助我,我是learnet
编辑您的 nginx.conf 并将此行添加到您的虚拟主机中
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?$1 break; } }