将.htaccess转换为Nginx规则

时间:2018-06-07 01:48:09

标签: php .htaccess nginx

我有一个PHP应用程序,我尝试在子文件夹上安装。我有.htaccess规则,如下所示:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /res/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /res/index.php [L]
</IfModule>

我在Nginx中把它转换成了这个:

location /res {
        index index.php;
        try_files $uri $uri/ /res/index.php?q=$uri;
}

但它不起作用。

0 个答案:

没有答案