永久黄网站色视频免费直播,yy6080三理论日本中文,亚洲无码免费在线观看视频,欧美日韩精品一区二区在线播放

無標(biāo)題文檔
wdCP系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊)
wdOS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊)
注冊 發(fā)貼 提問 回復(fù)-必看必看 wddns免費(fèi)智能 DNS 開通 本地或虛擬機(jī)使 用wdcp 一鍵包在mysql編 譯時"卡住"
AI導(dǎo)航網(wǎng)AI應(yīng)用網(wǎng)站大全 wdcp官方技術(shù)支持/服務(wù) 阿里云8折優(yōu)惠券 無敵云 騰訊云優(yōu)惠中,現(xiàn)注冊更有260代金額券贈送
返回列表 發(fā)帖
提問三步曲: 提問先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會讓你更快解決問題
1 提供詳細(xì),如系統(tǒng)版本,wdcp版本,軟件版本等及錯誤的詳細(xì)信息,貼上論壇或截圖發(fā)論壇
2 做過哪些操作或改動設(shè)置等

溫馨提示:信息不詳,很可能會沒人理你!論壇有教程說明的,也可能沒人理!因?yàn)?你懂的

[求助] lnamp環(huán)境,wordpress無法使用偽靜態(tài)

安裝了lnamp環(huán)境,之后,創(chuàng)建了wordpress網(wǎng)站,也將htaccess文件上傳到根目錄下了

但無法使用偽靜態(tài),最后顯示404錯誤

ERROR 404 - Not Found!

The following error occurred:

The requested URL was not found on this server.

Please check the URL or contact the webmaster.

求解!

本帖最后由 hfs1314 于 2013-12-30 21:12 編輯

網(wǎng)站管理-rewrite規(guī)則管理   新建一個規(guī)則并取一個 .conf后綴的文件名。內(nèi)容如下

  1. rewrite ^.*/files/(.*)$ /wp-includes/ms-files.php?file=$1 last;
  2. if (!-e $request_filename) {
  3. rewrite ^.+?(/wp-.*) $1 last;
  4. rewrite ^.+?(/.*\.php)$ $1 last;
  5. rewrite ^ /index.php last;
  6. }
復(fù)制代碼


如果使用wp-super-cache插件的話可以換成以下規(guī)則。


  1. # 如果請求的文件已存在,直接返回
  2.           if (-f $request_filename) {
  3.               break;
  4.           }
  5.           set $supercache_file '';
  6.           set $supercache_uri $request_uri;
  7.           set $supercache 1;
  8.           set $ihttp_host '';

  9.           if ($request_method = POST) {
  10.               set $supercache 0;
  11.           }

  12.           # 僅在訪問文章永久鏈接時使用靜態(tài)文件,請求中帶參數(shù)則不使用靜態(tài)緩存
  13.           set $qs 0;
  14.           if ($query_string) {
  15.               set $qs 1;
  16.           }

  17.           # 不過從 twitter, facebook, feedburner 鏈接點(diǎn)過來的,總是帶參數(shù),這些訪問仍然可以使用靜態(tài)文件
  18.           if ($query_string ~* "^utm_source=([^&]+)&utm_medium([^&]+)&utm_campaign=([^&]+)(&utm_content=([^&]+))?[        DISCUZ_CODE_1        ]quot;) {
  19.               set $qs 0;
  20.               set $supercache_uri $document_uri;
  21.           }
  22.           #deactivate on high load
  23.           if ($qs = 1) {
  24.               set $supercache 0;
  25.           }
  26.           # 針對已登錄用戶(發(fā)表過評論),可以不靜態(tài)化。在訪問量高峰時可注釋掉
  27.           if ($http_cookie ~* "comment_author_|wordpress|wp-postpass_" ) {
  28.               set $supercache 0;
  29.           }

  30.           # 支持移動設(shè)備,訪問移動版本的網(wǎng)頁緩存
  31.           if ($http_user_agent ~* '(iphone|ipod|aspen|incognito|webmate|android|dream|cupcake|froyo|blackberry9500|blackberry9520|blackberry9530|blackberry9550|blackberry 9800|webos|s8000|bada)') {
  32.                set $ihttp_host '-mobile';
  33.           }

  34.           # 指定靜態(tài)緩存文件的路徑
  35.           if ($supercache = 0) {
  36.                set $supercache_uri '';
  37.           }
  38.           if ($supercache_uri ~ ^(.+)$) {
  39.               set $supercache_file /wp-content/cache/supercache/$http_host$1/index${ihttp_host}.html;
  40.           }

  41.           # 只有當(dāng)緩存文件存在時,才進(jìn)行 rewrite
  42.           if (-f $document_root$supercache_file) {
  43.               #rewrite ^(.*)$ $supercache_file break;
  44.               rewrite ^ $supercache_file last;
  45.           }

  46.           # 所有其他請求,轉(zhuǎn)給 wordpress 處理
  47.           if (!-e $request_filename) {
  48.               rewrite . /index.php last;
  49.           }
復(fù)制代碼




接下來新建站點(diǎn)或者編輯站點(diǎn)的時候在 rewrite規(guī)則選擇的地方選擇你剛剛命名的文件即可。

TOP

規(guī)則取自互聯(lián)網(wǎng),根據(jù)新版wordpress稍有改動。

TOP

返回列表