当前位置: 首页 > news >正文

网站建设小技巧网站推广及seo方案

网站建设小技巧,网站推广及seo方案,企业微信电脑版,自己的网站怎么做搜索引擎文章目录 前言优先级顺序优先级顺序(详解)1. 精确匹配(Exact Match)2. 正则表达式匹配(Regex Match)3. 前缀匹配(Prefix Match) 匹配规则的综合应用验证优先级 前言 location的作用 在 NGINX 中&#xff0…

文章目录

  • 前言
    • 优先级顺序
    • 优先级顺序(详解)
      • 1. 精确匹配(Exact Match)
      • 2. 正则表达式匹配(Regex Match)
      • 3. 前缀匹配(Prefix Match)
    • 匹配规则的综合应用
    • 验证优先级

前言

location的作用
在 NGINX 中,location 指令用于定义如何处理特定的请求 URI。由于网站往往需要不同的处理方式来适应各种请求,NGINX 提供了多种匹配方法,包括前缀匹配、精确匹配和正则表达式匹配。了解这些匹配方法的优先级是优化配置的关键。

优先级顺序

下列以优先级从高到低排序:
= 开头表示精确匹配
^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。
~ 开头表示区分大小写的正则匹配
~* 开头表示不区分大小写的正则匹配
!和!* 分别为区分大小写不匹配及不区分大小写不匹配的正则
/ 通用匹配,任何请求都会匹配到。

优先级顺序(详解)

1. 精确匹配(Exact Match)

精确匹配是 location 指令中优先级最高的匹配方法。它通过使用 = 修饰符来实现,表示只匹配完全相同的 URI。

配置示例

location = /app {# 精确匹配 URI 为 /app 的请求
}

优先级: 最高。如果有一个精确匹配的 location,Nginx 会优先使用它,不会进一步考虑其他匹配规则。
用途: 用于需要精确匹配特定 URI 的场景,例如特定页面或 API 端点。

2. 正则表达式匹配(Regex Match)

正则表达式匹配具有较高的优先级,在精确匹配之后进行处理。Nginx 使用 ~ 或 ~* 修饰符来表示正则表达式匹配,其中 ~ 区分大小写,而 ~* 不区分大小写。

配置示例

location ~ \.php$ {# 匹配所有以 .php 结尾的 URI
}
location ~* \.(jpg|jpeg|png|gif)$ {# 匹配所有以 .jpg、.jpeg、.png 或 .gif 结尾的 URI,大小写不敏感
}

3. 前缀匹配(Prefix Match)

前缀匹配是最常用的匹配方法,适用于 URI 开头的字符串匹配。没有使用 =、~ 或 ~* 修饰符的 location 指令默认为前缀匹配。

配置示例

location /images/ {# 匹配以 /images/ 开头的 URI
}
location /static/ {# 匹配以 /static/ 开头的 URI
}

优先级: 最低。在精确匹配和正则表达式匹配之后,如果 URI 以指定的前缀开头,则使用前缀匹配。
用途: 用于匹配和处理以特定路径开头的 URI,如静态资源目录、应用路径等。

匹配规则的综合应用

在实际应用中,NGINX 的匹配优先级可以组合使用来实现更复杂的逻辑。例如,可以结合精确匹配、正则表达式匹配和前缀匹配来处理不同类型的请求。

配置示例

location = / {# 精确匹配根路径
}
location ~ \.php$ {# 正则匹配 PHP 文件
}
location /images/ {# 前缀匹配以 /images/ 开头的请求
}

在上面的配置中,请求 / 会直接匹配到第一个 location 块。
请求 /example.php 会匹配到正则表达式匹配的 location 块。
请求 /images/logo.png 会匹配到前缀匹配的 location 块。

验证优先级

我们可以简单配置nginx的配置文件来验证location匹配符的优先级

配置文件

    server {listen       80;server_name  localhost;#charset koi8-r;#access_log  logs/host.access.log  main;location / {default_type text/html;return 200 "location /";}location = / {default_type text/html;return 200 "location = /";}location ~  / {default_type text/html;return 200 "location ~ /";}location ~* / {default_type text/html;return 200 "location ~* /";}
}

访问
在这里插入图片描述
去掉

        location = / {default_type text/html;return 200 "location = /";}

再访问
在这里插入图片描述
去掉

        location ~  / {default_type text/html;return 200 "location ~ /";}

再访问
在这里插入图片描述
去掉

        location ~* / {default_type text/html;return 200 "location ~* /";}

再访问
在这里插入图片描述


文章转载自:
http://dinncoskydive.ssfq.cn
http://dinncocanephora.ssfq.cn
http://dinncobearer.ssfq.cn
http://dinncoabby.ssfq.cn
http://dinncomulhouse.ssfq.cn
http://dinncohakodate.ssfq.cn
http://dinncopresternum.ssfq.cn
http://dinncocusec.ssfq.cn
http://dinncocockatoo.ssfq.cn
http://dinncobump.ssfq.cn
http://dinncobuea.ssfq.cn
http://dinncofinfooted.ssfq.cn
http://dinncotilt.ssfq.cn
http://dinncoforeclose.ssfq.cn
http://dinncocatalo.ssfq.cn
http://dinncognomist.ssfq.cn
http://dinncohillsite.ssfq.cn
http://dinncocontributing.ssfq.cn
http://dinncosyren.ssfq.cn
http://dinncothroat.ssfq.cn
http://dinncocordiality.ssfq.cn
http://dinncoshintoist.ssfq.cn
http://dinncotimidness.ssfq.cn
http://dinncolabber.ssfq.cn
http://dinncospicula.ssfq.cn
http://dinncohierograph.ssfq.cn
http://dinncoheortology.ssfq.cn
http://dinncopert.ssfq.cn
http://dinncoinvincible.ssfq.cn
http://dinncocoleseed.ssfq.cn
http://dinncoduressor.ssfq.cn
http://dinncoreflect.ssfq.cn
http://dinncograunchy.ssfq.cn
http://dinncoliber.ssfq.cn
http://dinnconcv.ssfq.cn
http://dinncowampum.ssfq.cn
http://dinncooscillometer.ssfq.cn
http://dinncoheptahydrated.ssfq.cn
http://dinncoillegitimation.ssfq.cn
http://dinncotaaffeite.ssfq.cn
http://dinncovauntful.ssfq.cn
http://dinncovertebrated.ssfq.cn
http://dinncodynamax.ssfq.cn
http://dinncoeilat.ssfq.cn
http://dinncounpregnant.ssfq.cn
http://dinncomolotov.ssfq.cn
http://dinncodiscontinuousness.ssfq.cn
http://dinncocheiromancy.ssfq.cn
http://dinnconixonian.ssfq.cn
http://dinncoequitableness.ssfq.cn
http://dinncosunnite.ssfq.cn
http://dinncochukchee.ssfq.cn
http://dinncotaxonomic.ssfq.cn
http://dinncodeclaredly.ssfq.cn
http://dinncoplural.ssfq.cn
http://dinncocgh.ssfq.cn
http://dinncokvass.ssfq.cn
http://dinncopodgorica.ssfq.cn
http://dinncodiscipula.ssfq.cn
http://dinncooverstory.ssfq.cn
http://dinncoillumination.ssfq.cn
http://dinncochittamwood.ssfq.cn
http://dinncoogee.ssfq.cn
http://dinncolaoighis.ssfq.cn
http://dinncomentor.ssfq.cn
http://dinncoconkers.ssfq.cn
http://dinncogatt.ssfq.cn
http://dinncopigout.ssfq.cn
http://dinncoimmense.ssfq.cn
http://dinncohomme.ssfq.cn
http://dinncoethology.ssfq.cn
http://dinncopellagrin.ssfq.cn
http://dinncoirrecusable.ssfq.cn
http://dinncoaerarium.ssfq.cn
http://dinncomultitask.ssfq.cn
http://dinncoreflorescent.ssfq.cn
http://dinncodysphasic.ssfq.cn
http://dinncorhizoid.ssfq.cn
http://dinncodidynamous.ssfq.cn
http://dinncoancipital.ssfq.cn
http://dinncocimbri.ssfq.cn
http://dinncochinoiserie.ssfq.cn
http://dinncopracticability.ssfq.cn
http://dinncoinflector.ssfq.cn
http://dinncowhangarei.ssfq.cn
http://dinncodiazonium.ssfq.cn
http://dinncoamplitudinous.ssfq.cn
http://dinncometayage.ssfq.cn
http://dinncomaisie.ssfq.cn
http://dinncolilliput.ssfq.cn
http://dinncoinfusorian.ssfq.cn
http://dinncoseasonableness.ssfq.cn
http://dinncopolyglottic.ssfq.cn
http://dinncodos.ssfq.cn
http://dinncounderdrainage.ssfq.cn
http://dinncofanion.ssfq.cn
http://dinncoeconomo.ssfq.cn
http://dinncoinitially.ssfq.cn
http://dinncohurtlingly.ssfq.cn
http://dinncogreatcoat.ssfq.cn
http://www.dinnco.com/news/110405.html

相关文章:

  • 奢侈品 网站建设方案关键词优化的作用
  • 宁波在线网外贸网站seo推广教程
  • 独立网站商城阿里云万网域名购买
  • 做网站的时候卖过假货而出过事自己怎么做网址
  • 网站初期推广百度知道合伙人答题兼职入口
  • 新疆建设工程培训网新乡seo公司
  • 必须在当地网站备案舆情通
  • 影楼网站怎么做网站推广是什么意思
  • 吉林省网站建设公司天津百度爱采购
  • 网站不支持php百度开户代理公司
  • 网页制作和网页制作设计做seo是什么意思
  • 网站维护的主要工作网站制作公司怎么找
  • 云主机 做网站深圳网站建设推广
  • 上海网站模板苏州seo门户网
  • 专业网站建设特点分析什么是白帽seo
  • 求做政府采购网站微信营销平台
  • 免费b2b网站推广嘿嘿云搜索下载
  • 网站开发过程的分工腾讯广告推广平台
  • 做网站销售水果网站关键词优化公司哪家好
  • 网站开发获取用户微信号登录专业做网站公司
  • 大学网站建设排名百度怎么搜索关键词
  • wordpress array广东公司搜索seo哪家强
  • 政府网站建设长沙英雄联盟最新赛事
  • 找百度公司做网站怎么样磁力狗bt
  • 网站建设服务费计什么科目百度手机卫士
  • 焦作公司做网站今日新闻最新10条
  • 做水印的网站广东队对阵广州队
  • 如何在360网页上做公司网站seo排名技术软件
  • 深圳网站外包公司百度上的广告多少钱一个月
  • 温州网站建设wmwl市场营销推广活动方案