location / {
創(chuàng)新互聯(lián)建站專注于淮上網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供淮上營銷型網(wǎng)站建設(shè),淮上網(wǎng)站制作、淮上網(wǎng)頁設(shè)計(jì)、淮上網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造淮上網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供淮上網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
1. 在阿里云或其他地方申請證書文件得到如:
214040226730432.key? 214040226730432.pem
放到如? /etc/nginx/cert目錄下
2.nginx配置文件里面
server {
listen 443;
server_name jadewen.win ;
ssl on;
root /var/www/default;
index index.php index.html;
ssl_certificate? cert/214040226730432.pem;
ssl_certificate_key? cert/214040226730432.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location / {
? try_files $uri $uri/ /index.php?$query_string;
}
? location ~ \.php$ {
? fastcgi_pass 127.0.0.1:9000;
? fastcgi_index index.php;
? include fastcgi.conf;
}
}
3.重定向http到https
server {
listen? ? ? ? 80;
server_name? jadewen.win ;
return 301? ? ;
}
配置多個server塊映射到不同目錄即可,但是免費(fèi)的https證書只能支持一個主域名,二級域名仍然只能是http的
server {
listen? ? ? ? 80;
server_name? blog.jadewen.win;
root? ? ? ? ? /var/www/blog;
index? ? ? ? index.php index.html;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
首先需要在配置httpd.conf以啟用url rewrite功能:
將#LoadModule rewrite_module modules/mod_rewrite.so前面的注銷去掉然后重啟apache,在命令行使用httpd -M查看當(dāng)前模塊情況.如有rewrite_module(shared)說明模塊已經(jīng)成功加載.
配置目錄的allowoverwrite屬性:
在Apache 2.x 中,我們會看到 DocumentRoot設(shè)置的一行。這行就是存放網(wǎng)頁程序的地方。比如存放在 c:/www 目錄中,那么我們就要設(shè)置 DocumentRoot為如下的:
DocumentRoot "c:/www"
然后我們再還要對 DocumentRoot做針對性的行為設(shè)置。在一般的情況下,httpd.conf 會給一個默認(rèn)的。如果你要改 DocumentRoot的路徑,同時也要改針對DocumentRoot的Directory的設(shè)置,也就是
Directory "DocumentRoot中設(shè)置的路徑"
比如我們把DocumentRoot的路徑改為了 “c:/www”,那我們也要把 DocumentRoot做針對性的行為設(shè)置也要改成這個路徑.
注意不要修改一下default的配置
Directory /
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
/Directory
而是修改這里:
Directory “c:/www”
#
# Possible values for the Options directive are “None”, “All”,
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that “MultiViews” must be named *explicitly* — “Options All”
# doesn’t give it to you.
#
# The Options directive is both complicated and important. Please see
#
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
/Directory
把AllowOverride 的參數(shù)設(shè)置為ALL,表示整臺服務(wù)器上的,都支持URL規(guī)則重寫。Apache 服務(wù)器要讀每個網(wǎng)站下的家目錄下的 .htaccess 文件。如果沒有這個文件,或者這個文檔沒有定義任何關(guān)于URL重寫的規(guī)則,則不會有任何效果。在一般的情況下,成熟的Web 服務(wù)器應(yīng)用套件,都支持URL重寫的,比如drupal和joomla 。當(dāng)我們用這些程序時,會發(fā)現(xiàn)在安裝包中有 .htaccess中有這個文件。我們把Apache配置好后,只是需要在這些程序的后臺打開此功能就行了.
下面是WordPress安裝包中的.htaccess文件
# BEGIN WordPress
IfModule mod_rewrite.c
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
/IfModule
# END WordPress
設(shè)置wordpress分3塊。
1、wordpress的常規(guī)設(shè)置。
2、wordpress的固定鏈接設(shè)置。
3、wordpress的閱讀設(shè)置。
一般新站,首先經(jīng)過這3個設(shè)置,以便后期維護(hù)及使用,不懂追問。