apache的.htaccess轉(zhuǎn)換為nginx偽靜態(tài)文件conf的方法
在線轉(zhuǎn)換地址 : https://tool.lu/htaccess2nginx
以下幾點(diǎn)需要注意:
1,RewriteRule
需要全部替換為rewrite
。
2,替換掉所有的\
,conf不需要轉(zhuǎn)義符。
3,conf文件的規(guī)則開頭需要加上/
。
4, 所有的[L]
和 [QSA,L]
等需要替換為 last
。
5,每一行必須以;
結(jié)尾。
上面5點(diǎn)實(shí)例
如RewriteRule ^category$ index\.php [L]
需要更換為rewrite ^/category$ /index.php last;
6,對(duì)于包含|
或者}
等特殊字符的規(guī)則,必須用""
引起來,不然會(huì)當(dāng)作規(guī)則的終止符號(hào)。
如rewrite ^/daily-([0-9]{4}-[0-9]{2}-[0-9]{2}).html$ /daily.php?day=$1 last;
,需要用雙引號(hào)括起來rewrite "^/daily-([0-9]{4}-[0-9]{2}-[0-9]{2}).html$" /daily.php?day=$1 last;
,不然會(huì)出錯(cuò)。
apache的.htaccess
RewriteRule ^index\.html$ index\.php [L]
RewriteRule ^category$ index\.php [L]
# access any object by its numeric identifier
RewriteRule ^feed-c([0-9]+)\.xml$ feed\.php\?cat=$1 [L]
RewriteRule ^feed-b([0-9]+)\.xml$ feed\.php\?brand=$1 [L]
RewriteRule ^feed-type([^-]+)\.xml$ feed\.php\?type=$1 [L]
RewriteRule ^feed\.xml$ feed\.php [L]
RewriteRule ^buyer-show\.html$ buyer_show\.php [L]
RewriteRule ^blogger\.html$ ads\.php [L]
RewriteRule ^(.*)-c([0-9]+)-under-([a-z0-9]+)-dollar.html$ category\.php\?id=$2&utxt=$3 [QSA,L]
RewriteRule ^(.*)-c([0-9]+)$ category\.php\?id=$2 [QSA,L]
RewriteRule ^(on-sale|new-arrival|best-items|feature-product|clearance|under-5|under-10|100-in-stock)-([0-9]+)-([0-9]+)-([0-9.]+)-([0-9.]+)-([a-z]+)-([a-z_]+)-([A-Z]+)-([0-9]{1})\.html$ special\.php\?act=$1&cat_id=$2&page=$3&price_min=$4&price_max=$5&display=$6&sort=$7&order=$8&s=$9 [QSA,L]
RewriteRule ^daily-([0-9]{4}-[0-9]{2}-[0-9]{2})\.html$ daily\.php\?day=$1 [QSA,L]
轉(zhuǎn)換后為:
rewrite ^/index.html$ /index.php last;
rewrite ^/category$ /index.php last;
rewrite ^/((?!guanzhou020|js|themes|print|facebook|edm).)*/(.*) /index.php last;
rewrite ^/feed-c([0-9]+).xml$ /feed.php?cat=$1 last;
rewrite ^/feed-b([0-9]+).xml$ /feed.php?brand=$1 last;
rewrite ^/feed-type([^-]+).xml$ /feed.php?type=$1 last;
rewrite ^/feed.xml$ /feed.php last;
rewrite ^/buyer-show.html$ /buyer_show.php last;
rewrite ^/blogger.html$ /ads.php last;
rewrite ^/(.*)-c([0-9]+)-under-([a-z0-9]+)-dollar.html$ /category.php?id=$2&utxt=$3 last;
rewrite ^/(.*)-c([0-9]+)$ /category.php?id=$2 last;
rewrite "^/(on-sale|new-arrival|best-items|feature-product|clearance|under-5|under-10|100-in-stock)-([0-9]+)-([0-9]+)-([0-9.]+)-([0-9.]+)-([a-z]+)-([a-z_]+)-([A-Z]+)-([0-9]{1}).html$" /special.php?act=$1&cat_id=$2&page=$3&price_min=$4&price_max=$5&display=$6&sort=$7&order=$8&s=$9 last;
rewrite "^/daily-([0-9]{4}-[0-9]{2}-[0-9]{2}).html$" /daily.php?day=$1 last;
#301
if ($http_host = it2168.com) {
rewrite ^(.*)$ http://www.mediarhema.com$1 permanent;
}
或者
server {
listen 80;
server_name it2168.com;
return 301 http://www.mediarhema.com$request_uri;
}
//以下是301轉(zhuǎn)向設(shè)置
server {
server_name it2168.com;
rewrite ^/(.*)$ http://www.mediarhema.com$1 permanent;
}
#301-START
if ($host ~ '^it2168.com'){
return 301 http://www.mediarhema.com$request_uri;
}
#301-END
找到:網(wǎng)站=>配置文件
if ($host ~ '^it2168.ccom'){
return 301 https://www.it2168.ccom$request_uri;
}
一、404配置
找到:網(wǎng)站=>配置文件
error_page 404 /404.html;
location = /404.html {
root /www/server/nginx/html;
}
然后在:root /www/server/nginx/html 配置404.html即可生效;
相關(guān)文章:
-
帝國(guó)CMS是什么程序 帝國(guó)CMS是一套開源的靜態(tài)頁(yè)面程序,憑借超高的擴(kuò)展性,很多知名的新聞?wù)军c(diǎn)、行業(yè)站點(diǎn)都是應(yīng)用的帝國(guó)CMS后端。因?yàn)榈蹏?guó)CMS和dedecms一樣都是生成靜態(tài)頁(yè)面的,所以非常利于...
-
域名解析DNS分為顯性URL和隱形URL,顯性URL和隱形URL有什么區(qū)別?隱形URL和顯性URL哪個(gè)更有利于SEO?顯性URL相當(dāng)于域名了302重定向,隱形URL使用iframe框架技術(shù)隱藏真實(shí)目標(biāo)地址,顯性URL更有利于...
-
在常見的CMS系統(tǒng)中,我對(duì)dedecms算是比較熟悉的,自己網(wǎng)站用的也是這個(gè)系統(tǒng)。系統(tǒng)功能強(qiáng)大使用靈活,相信這也是它受到大多數(shù)中小站長(zhǎng)青睞的原因。 再好的系統(tǒng)也有照顧不周的地方,很多站...
-
這篇文章主要為大家詳細(xì)介紹了dedecms后臺(tái)增加php導(dǎo)出excel功能實(shí)現(xiàn)辦法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下,有需要的朋友可以收藏方便以后借鑒。 不少朋友希望織夢(mèng)的后臺(tái)...
-
第一次使用的插件是 pdfobject.js 百度網(wǎng)盤下載地址:http://pan.baidu.com/s/1kUPhYdT 加載 script src=/style/js/pdfobject.js /script script type=text/javascript window.onload = function (){ var success = new PDFObject({ url: pdf文件地...
-
網(wǎng)上有一種方法是copy+unlink來移動(dòng)文件,但是遇到大文件時(shí)會(huì)消耗大量時(shí)間,對(duì)性能不怎么友好,可以使用rename()來移動(dòng)文件,速度非???關(guān)于rename()函數(shù) bool rename ( string $oldname , string $newname...
-
基于我們公司可選的幾種推廣方式: 一、關(guān)鍵詞優(yōu)化排名推廣(推薦) 指定關(guān)鍵詞推廣,按天付費(fèi),推廣我們業(yè)務(wù)中最重要的一些關(guān)鍵詞,達(dá)到百度首頁(yè)才收費(fèi),大概一個(gè)關(guān)鍵詞10元/天左右。...
-
插件介紹 wordpress程序網(wǎng)站在發(fā)布文章時(shí)可以給每一片文章添加與之相關(guān)的TAG標(biāo)簽,對(duì)于TAG標(biāo)簽可以生成很多頁(yè)面,增加搜索引擎對(duì)內(nèi)容的抓取量。 WP Auto Keywords插件就是一款能自動(dòng)給文章添加...
-
5.7 生成列表頁(yè) 改動(dòng) include/arc.listview.class.php 1.先設(shè)置 關(guān)閉副欄目(在系統(tǒng)----系統(tǒng)基本參數(shù)性能選項(xiàng)里) 2.一般網(wǎng)站不需要 欄目交叉 交叉 所以 找到94行注釋掉: //獲得交叉欄目ID /*if($this-Type...
-
使用preg_replace將刪除所有空白(包括制表符等) $string = user na me $string = preg_replace(/\s+/, , $string); echo $string; // username preg_replace(/\s/u, ,$string) u (PCRE8) 此修正符打開一個(gè)與perl不兼容的附加功能. 模式...