七叔的头像-THE FREE SKY
这家伙很懒,什么都没有写...
WordPress Nginx伪静态-THE FREE SKY

WordPress Nginx伪静态

先建立一个nginx.conf 文件,然后填入以下内容: location / { index index.html index.php; if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_fil...
7月15日 08:29
05890
PHP在線解碼-THE FREE SKY

PHP在線解碼

雲麓:GO! 找源碼:GO!
nginx https配置方法:http和https共存-THE FREE SKY

nginx https配置方法:http和https共存

nginx怎么配置https,nginx配置https方法,nginx中如何实现https和http都可访问。 给nginx配置SSL证书之后,https可以正常访问,http访问显示400错误,nginx的配置如下: server { listen 80 def...
Nginx以及单页面http自动跳转https方法-THE FREE SKY

Nginx以及单页面http自动跳转https方法

在配置80端口的文件里面,写入以下内容即可。 server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; location / { root html; index index.html index.htm; ...
apache如何设置http自动跳转到https-THE FREE SKY

apache如何设置http自动跳转到https

1、先打开url重定向支持 1)打开Apache/conf/httpd.conf,找到 #LoadModule rewrite_module modules/mod_rewrite.so 去掉#号。 2)找到你网站目录的<Directory>段,比如我的网站目录是c:/...
apache中http强制跳转https的方法-THE FREE SKY

apache中http强制跳转https的方法

如果需要整站跳转,则在网站的配置文件的<Directory>标签内,键入以下内容: RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]...