Nginx 处理请求的过程一共划分为 11 个阶段,按照执行顺序依次是 post-read、server-rewrite、find-config、rewrite、post-rewrite、preaccess、access、post-access、try-files、content 以及 log。 1 ...
分类:
其他好文 时间:
2021-04-29 11:38:38
阅读次数:
0
####rewrite语法 | Syntax: | rewrite regex replacement [flag]; | | | | | Default: | — | | Context: | server, location, if | //所有请求转发到/pages/maintain.html ...
分类:
其他好文 时间:
2021-04-21 12:32:16
阅读次数:
0
没有HTTPS的抓包截图 HTTPS=HTTP + TLS/SSL https 实现过程如下 1.客户端发起HTTPS请求 rewrite www.baidu.com https://www.baidu.com 客户端访问某个web端的https地址,一般都是443端口 2.服务器端的配置 采用ht ...
分类:
Web程序 时间:
2021-04-19 15:01:16
阅读次数:
0
把public所有东西放到wwwroot目录下 修改.htaccess <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d ...
分类:
其他好文 时间:
2021-04-02 13:38:02
阅读次数:
0
1、设置可以抓取https站点的包,安装证书,要安装到本地,导入前选择信任的根证书颁发机构 2、抓取的数据没有request和response选项卡查看,需要在edit里设置 3、抓取的数据有乱码,需要在rewrite里设置 ...
分类:
其他好文 时间:
2021-03-15 11:16:47
阅读次数:
0
加载模块 在httpd.conf文件里使下面模块生效: LoadModule ssl_module modules/mod_ssl.so # 如果使用https证书,这个模块功能一定要打开! LoadModule rewrite_module modules/mod_rewrite.so # 重写模 ...
分类:
Web程序 时间:
2021-03-01 14:13:40
阅读次数:
0
###1.如果没有vue脚手架需先要安装脚手架 cnpm i @vue/cli -g ###2.利用脚手架创建项目 vue create myproject(项目名) ###3.创建完项目后,需手动在项目根目录创建vue.config.js # vue.config.js module.export ...
分类:
其他好文 时间:
2021-01-25 10:57:04
阅读次数:
0
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:
其他好文 时间:
2021-01-04 11:32:56
阅读次数:
0
server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; } server { listen 443 ssl; server_name localhost; proxy_buffering ...
分类:
Web程序 时间:
2021-01-04 11:17:46
阅读次数:
0
1、安装 mod_rewrite 模块 Apache 服务器默认是没有打开 mod_rewrite 模块的,必须手动来启动。打开配置文件httpd.conf,找到下面一行: #LoadModule rewrite_module modules/mod_rewrite.so 将前面的#号删除,保存后重 ...
分类:
数据库 时间:
2020-12-15 12:20:45
阅读次数:
4