0

我正在尝试运行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
4

1 回答 1

1

开始了:

index index.html
location ~ ^/your_blog_location/. {
    default_type text/html;
    try_files $uri $uri.html;
    error_page    404 = /404.html;
    error_page 500 502 503 504 = /500.html;
}

别忘了——>完成后重启nginx)

于 2013-05-31T14:10:36.843 回答