我的 ZenPHOTO 1.4.5 画廊有以下 Apache 重写规则:
'<IfModule mod_autoindex.c>
IndexIgnore *
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^.*/?$ index.php [L,QSA]
</IfModule>`
我需要能够将它与 Nginx 一起使用。
谁能帮我转换一下?
提前致谢!