AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / server / 问题 / 556207
Accepted
Calvin Cheng
Calvin Cheng
Asked: 2013-11-21 01:35:51 +0800 CST2013-11-21 01:35:51 +0800 CST 2013-11-21 01:35:51 +0800 CST

nginx try_files 将 .html 重写为“干净”的 url

  • 772

这是包含静态 html 文件的目录

public
|-- index.html
|-- media
|   `-- blurred_image-8.jpg
|-- post
|   `-- 13considerations
|       `-- index.html

我正在尝试配置 nginx 以转换所有以去除.html后缀结尾的 url。

像这样:-

server {
    listen       80;
    server_name  mysite.com;

    location / {
        root   /var/www/mysite/public;
        try_files  $uri  $uri/ $uri/index.html;
    }

    location /media/ {
        alias /var/www/mysite/public/media/;
        error_page 404 = /404;
        expires 30d;
    }

    location /static/ {
        alias /var/www/mysite/public/static/;
        error_page 404 = /404;
        expires 30d;
    }
}

这适用于主页“ http://mysite.com/ ”,但如果我尝试访问“ http://mysite.com/post/13considerations/ ”,我会收到 500 内部服务器错误。

是什么赋予了?

nginx
  • 1 1 个回答
  • 23603 Views

1 个回答

  • Voted
  1. Best Answer
    plasmid87
    2013-11-21T02:01:48+08:002013-11-21T02:01:48+08:00

    您使用的示例适用于返回目录index.html文件的内容,但不适用于文件(例如,http://server/somedir/file不会返回 的内容/somedir/file.html)。

    一个简化的配置,它将返回任何没有扩展名的 HTML 文件并将用于index.html目录,如下所示:

    server {
        listen       80;
        server_name  mysite.com;
    
        index index.html;
        root /var/www/mysite/public;
    
        location / { 
            try_files $uri $uri/ @htmlext;
        }   
    
        location ~ \.html$ {
            try_files $uri =404;
        }   
    
        location @htmlext {
            rewrite ^(.*)$ $1.html last;
        }   
    }
    

    这个怎么运作:

    • 当访问目录 URI 时,指定index index.html将默认使用此文件。
    • 放在块root之外location将适用于服务器范围。
    • try_files $uri $uri/ @htmlext在最终尝试追加.html.
    • try_files $uri =404是为了防止 Nginx 在找不到文件时陷入重写循环。
    • rewrite ^(.*)$ $1.html last追加.html并重新启动 URI 匹配过程。
    • 18

相关问题

  • Gzip 与反向代理缓存

  • nginx 作为代理的行为

  • Nginx 学习资源 [关闭]

  • 提供 70,000 个静态文件 (jpg) 的最佳方式?

  • 在 Apache、LightTPD 和 Nginx Web 服务器上提供 PHP 5.x 应用程序的现状?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve