-1

我收到 404 错误,将 apache 的 htaccess 转换为 nginx 后,下面是我的 htaccess 代码

RewriteEngine On
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L]

请帮助我,我是learnet

4

1 回答 1

1

编辑您的 nginx.conf 并将此行添加到您的虚拟主机中

     location / 
    { 
    if (!-e $request_filename)
    { 
       rewrite ^(.*)$ /index.php?$1 break; 
    } 
    }
于 2013-02-07T12:24:46.440 回答