1 搭建好nginx,可以使用 2 在nginx.conf配置文件中,对http模块,server模块修改,增加一个location location /esIndex/ { root html; rewrite ^//(.*)$ \$1 break; } 3 sbin/nginx -t,sbin/ ...
分类:
其他好文 时间:
2020-04-01 10:35:11
阅读次数:
179
self.location.href="url"; //1.仅在本页面打开url window.location.href="url"; //2.当前页面打开URL页面 this.location.href="url"; //3.用法和self.location.href一直 location.hr ...
分类:
Web程序 时间:
2020-03-31 21:20:43
阅读次数:
70
import time from selenium import webdriver driver = webdriver.Firefox() driver.get('http://www.baidu.com') time.sleep(5) driver.find_element('id','kw' ...
分类:
其他好文 时间:
2020-03-31 21:07:19
阅读次数:
79
yum -y install nginxyum -y i php php-fpm systemctl start nginx systemctl start php-fpm yum install php-bcmathsystemctl reload nginx.servicesystemctl r ...
分类:
Web程序 时间:
2020-03-31 19:25:10
阅读次数:
90
Nginx配置语法 块配置项 块配置项由一个块配置项名和一对大括号组成。具体示例如下: 上面代码段中的events、http、server、location、upstream等都是块配置项,块配置项之后是否如“location/webstatic{...}”那样在后面加上参数,取决于解析这个块配置项 ...
分类:
其他好文 时间:
2020-03-31 17:36:43
阅读次数:
114
server { listen 80; server_name A.com; location /{ proxy_pass https://B.com/asi/; } location ^~/web/ { proxy_pass https://B.com/web/; } } ...
分类:
其他好文 时间:
2020-03-31 10:39:56
阅读次数:
177
配置node0 # Elasticsearch Configuration # # NOTE: Elasticsearch comes with reasonable defaults for most settings. # Before you set out to tweak and tune ...
分类:
其他好文 时间:
2020-03-30 23:46:01
阅读次数:
129
| flag | 说明 | | | | | last | nginx重定向location区段,能够直接返回200状态码 | | break | nginx重定向资源路径,能够直接返回200状态码 | | redirect | 返回302临时重定向 | | permanent | 返回301永久重定 ...
分类:
其他好文 时间:
2020-03-30 19:26:21
阅读次数:
77
参考来源:https://www.paddlepaddle.org.cn/documentation/docs/zh/user_guides/nlp_case/label_semantic_roles/README.cn.html 1.源数据介绍 自然语言分析技术大致分为三个层面:词法分析、句法分析 ...
分类:
其他好文 时间:
2020-03-30 09:35:17
阅读次数:
93