在将某些.htaccess行转换为nginx规则时,我感到很麻烦。 这是我的.htaccess文件,如下,希望您能帮助我转换这些行。 如果您能为我写nginx行,将不胜感激。
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|assets)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]