我正在尝试运行secondcrack,它是 nginx 服务器中的静态文件 Markdown 博客引擎的 php 解决方案(原始文件仅在 Apache 中测试过)。那么有人知道如何将这个 Apaches 的 .htaccess 转换为 nginx 语法吗?
Options -MultiViews
AddOutputFilterByType DEFLATE text/html text/plain text/css text/javascript text/xml text/rss text/rss+xml
RewriteEngine On
RewriteRule ^([^\.]*)$ - [T=text/html]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.*)$ $1.html [QSA,L]
ErrorDocument 404 /404.html
ErrorDocument 500 /500.html