-
當(dāng)前位置:首頁(yè) > 創(chuàng)意學(xué)院 > 技術(shù) > 專題列表 > 正文
wordpress主頁(yè)鏈接(wordpress主頁(yè)鏈接增加自定義參數(shù))
大家好!今天讓創(chuàng)意嶺的小編來(lái)大家介紹下關(guān)于wordpress主頁(yè)鏈接的問(wèn)題,以下是小編對(duì)此問(wèn)題的歸納整理,讓我們一起來(lái)看看吧。
開(kāi)始之前先推薦一個(gè)非常厲害的Ai人工智能工具,一鍵生成原創(chuàng)文章、方案、文案、工作計(jì)劃、工作報(bào)告、論文、代碼、作文、做題和對(duì)話答疑等等
只需要輸入關(guān)鍵詞,就能返回你想要的內(nèi)容,越精準(zhǔn),寫出的就越詳細(xì),有微信小程序端、在線網(wǎng)頁(yè)版、PC客戶端
官網(wǎng):https://ai.de1919.com。
創(chuàng)意嶺作為行業(yè)內(nèi)優(yōu)秀的企業(yè),服務(wù)客戶遍布全球各地,如需了解SEO相關(guān)業(yè)務(wù)請(qǐng)撥打電話175-8598-2043,或添加微信:1454722008
本文目錄:
一、在wordpress主頁(yè),添加一個(gè)鏈接“網(wǎng)站地圖”,點(diǎn)開(kāi)之后,所有文章只顯示文章名,并且按日期歸檔
百度地圖或谷歌地圖,Baidu Sitemap Generator、Google XML Sitemaps 希望能幫到你(美設(shè)之家)
二、wordpress固定鏈接的wordpress固定鏈接的結(jié)構(gòu)
這里有幾個(gè)結(jié)構(gòu)可以作為參考:
%year% 日志發(fā)表的年份,四位數(shù)字
%monthnum% 日志發(fā)表的月份
%day% 日志發(fā)表的日期
%hour% 日志發(fā)表的時(shí)間-小時(shí)
%minute% 日志發(fā)表的時(shí)間-分鐘
%second% 日志發(fā)表的時(shí)間-秒
%postname%日志標(biāo)題的縮略版本(日志/頁(yè)面編輯界面上的日志別名)。因此“This Is A Great Post!”在URI中會(huì)變成this-is-a-great-post。
%post_id%日志的唯一ID,如123
%category%分類名稱的縮略版本(添加新分類/編輯界面上的分類別名)。嵌套的子分類會(huì)作為嵌套子目錄出現(xiàn)在URI中。出于運(yùn)行方面的考慮,不推薦以%category%作為固定鏈接的起始部分。
%tag%標(biāo)簽名稱的縮略版本(添加新標(biāo)簽/編輯界面上的標(biāo)簽別名)。出于運(yùn)行方面的考慮,不推薦以%tag%作為固定鏈接的起始部分。
%author%作者名稱的縮略版本.
既然知道了我們就可以對(duì)這些開(kāi)始組合了。
幾種組合方式如下
/?p=%post_id%(默認(rèn)的)
/%year%/%monthnum%/%day%/%postname%/(年/月/日/日志名)
/%year%/%monthnum%/%postname%/(年/月/日志名)
/%monthnum%/%day%/%postname%/(月/日/日志名)
/%year%/%monthnum%/%day%/%post_id%/(年/月/日/日志id號(hào))
/%year%/%monthnum%/%post_id%/(年/月/日志id號(hào))
/%monthnum%/%day%/%post_id%/(月/日/日志id號(hào))
/archives/%post_id%(/archives/日志id號(hào))
/archives/%postname%(/archives/日志名)
/%post_id%(/日志id號(hào))
/%postname%(/日志名)
/%category%/%postname%.html (分類/日志名.html)
/%category%/%postname%.htm(分類/日志名.htm)
/%postname%.html(/日志名.html)
/%postname%.htm(/日志名.htm)
/%post_id%.html(/日志id號(hào).html)
/%post_id%.htm(/日志id號(hào).htm)
常用的就是以htm后者h(yuǎn)tml方式結(jié)尾的。當(dāng)然這個(gè)可以隨你的喜好自由改變。
win主機(jī)IIS 6 WordPress固定連接的設(shè)置
一般使用wordpress都會(huì)將設(shè)置固定鏈接(偽靜態(tài)),這樣更有利于seo,wordpress在LINUX系統(tǒng)的服務(wù)器中可以很好的使用,在Windows主機(jī),為了完美支持偽靜態(tài)就需要下點(diǎn)功夫。
空間需要支持rewrite組件,現(xiàn)在幾乎所有WIN主機(jī)都支持Rewrite 組件,有個(gè)問(wèn)題就是,博客鏈接能偽靜態(tài),可中文標(biāo)簽的鏈接打不開(kāi),比如我們?cè)O(shè)置的中文目錄中文tag,就打不開(kāi)了。解決WordPress博客偽靜態(tài)中文標(biāo)簽無(wú)法打開(kāi)可以使用下面的規(guī)則:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule /tag/(.*) /index.php?tag=$1
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# Rules to ensure that normal content gets through
RewriteRule /robots.txt /robots.txt [L]
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /favicon.ico /favicon.ico [L]
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /wp-(.*) /wp-$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]
在使用上有什么不清楚請(qǐng)查看下面的參考資料,有詳細(xì)的設(shè)置教程 很多朋友主站并不想放博客,有的朋友喜歡美觀想放一個(gè)主頁(yè)什么的,有的是公司的網(wǎng)站,或者有的朋友想做淘寶客,那么這樣只能把WordPress放到二級(jí)目錄(子目錄)里面了,wordpress在二級(jí)目錄的偽靜態(tài)規(guī)則規(guī)則:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# Rules to ensure that normal content gets through
RewriteRule /blog/sitemap.xml /blog/sitemap.xml [L]
RewriteRule /blog/favicon.ico /blog/favicon.ico [L]
# For tag
RewriteRule /blog/tag/(.*)/page/(d+)$ /blog/index.php?tag=$1&paged=$2
RewriteRule /blog/tag/(.+)$ /blog/index.php?tag=$1
# For category
RewriteRule /blog/category/(.*)/page/(d+)$ /blog/index.php?category_name=$1&paged=$2
RewriteRule /blog/category/(.*) /blog/index.php?category_name=$1
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /blog/wp-(.*) /blog/wp-$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/blog/$ /blog/index.php [L]
RewriteRule /blog/(.*) /blog/index.php/$1 [L]
#For page
RewriteRule /blog/page/(.*)/?s=(.*) /blog/index.php?s=$2&paged=$1
RewriteRule /blog/page/(.*) /blog/index.php?paged=$1
如果在規(guī)則使用上有什么不明白的地方請(qǐng)查看下面的參考資料詳細(xì)教程 如果根目錄和子目錄同時(shí)裝wordpress程序,該怎么實(shí)現(xiàn)偽靜態(tài)?
固定鏈接設(shè)置規(guī)則:
[ISAPI_Rewrite]# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32# For subRewriteRule /wordpress/sitemap.xml /wordpress/sitemap.xml [L]RewriteRule /wordpress/favicon.ico /wordpress/favicon.ico [L]RewriteRule /wordpress/tag/(.*)/page/(d+)$ /wordpress/index.php?tag=$1&paged=$2RewriteRule /wordpress/tag/(.+)$ /wordpress/index.php?tag=$1RewriteRule /wordpress/category/(.*)/page/(d+)$ /wordpress/index.php?category_name=$1&paged=$2RewriteRule /wordpress/category/(.*) /wordpress/index.php?category_name=$1RewriteRule /wordpress/wp-(.*) /wordpress/wp-$1 [L]RewriteRule ^/wordpress/$ /wordpress/index.php [L]RewriteRule /wordpress/(.*) /wordpress/index.php/$1 [L]RewriteRule /wordpress/page/(.*)/?s=(.*) /wordpress/index.php?s=$2&paged=$1RewriteRule /wordpress/page/(.*) /wordpress/index.php?paged=$1# For rootRewriteRule /tag/(.*) /index.php?tag=$1RewriteRule /robots.txt /robots.txt [L]RewriteRule /sitemap.xml /sitemap.xml [L]RewriteRule /favicon.ico /favicon.ico [L]RewriteRule /wp-(.*) /wp-$1 [L]RewriteRule /wordpress/(.*) /wordpress/$1 [L]RewriteRule ^/$ /index.php [L]RewriteRule /(.*) /index.php/$1 [L]
關(guān)于規(guī)則使用設(shè)置,詳細(xì)圖文教程請(qǐng)查看下面的參考資料
win主機(jī)IIS 7 WordPress固定連接的設(shè)置
“美觀的”固定鏈接通常會(huì)要求使用mod_rewrite,而IIS(常見(jiàn)于Windows服務(wù)器)卻不支持mod_rewrite。(如果你在Windows上使用Apache 2.0.54,mod_rewrite可能會(huì)運(yùn)行,前提是要在apacheconfhttpd.conf.中激活mod_rewrite)。
使用IIS 7并具備服務(wù)器管理權(quán)限時(shí),可以使用Microsoft的URL重寫模塊來(lái)代替mod_rewrite。雖然IIS 7不完全兼容mod_rewrite,但它支持WordPress的固定鏈接。Microsoft的URL重寫模塊安裝完畢后,在WordPress目錄下打開(kāi)web.config文件,將以下規(guī)則添加到system.webServer 元素中:
<rewrite>
< rules>
< rule name=Main Rule stopProcessing=true>
< match url=.* />
< conditions logicalGrouping=MatchAll>
< add input={REQUEST_FILENAME} matchType=IsFile negate=true />
< add input={REQUEST_FILENAME} matchType=IsDirectory negate=true />
< /conditions>
< action type=Rewrite url=index.php />
< /rule>
< /rules>
< /rewrite>
win主機(jī) IIS 7偽靜態(tài)規(guī)則的具體使用方法可以查看下面參考資料
IIS網(wǎng)站上有一份關(guān)于Microsoft的URL重寫模塊詳細(xì)的安裝指南,該模塊可用于 x64 與x86系統(tǒng)。
如果這個(gè)方法行不通,還可以試試PATHINFO鏈接;將index.php/放在自定義鏈接結(jié)構(gòu)的開(kāi)始部分前:
/index.php/%year%/%monthnum%/%day%/%postname%/這個(gè)方法并不總能成功,尤其是用在運(yùn)行于ISS 6上的WordPress時(shí)。要讓這方法運(yùn)行在IIS上,需要將以下兩行代碼添加到php.ini文件并將文件保存在網(wǎng)絡(luò)根目錄下。
cgi.fix_pathinfo = 1
cgi.force_redirect = 0
另一種解決方法是利用IIS的自定義404重定向。這要求你的虛擬主機(jī)允許你添加自定義404重定向,不過(guò)這并不需要你安裝任何第三方mod_rewrite軟件,也不需要你的固定鏈接結(jié)構(gòu)以/index.php/開(kāi)頭。
IIS7虛擬主機(jī)裝兩個(gè)wordpress固定鏈接設(shè)置
安裝兩個(gè)wordpress,一個(gè)在根目錄,一個(gè)在子目錄(二級(jí)目錄)偽靜態(tài)規(guī)則設(shè)置方案:
根目錄的偽靜態(tài)規(guī)則設(shè)置可以看下面參考資料
在子目錄(二級(jí)目錄)中的安裝wordpress,Web.config配置文件偽靜態(tài)代碼:
<?xml version=1.0 encoding=UTF-8?>
<configuration>
<system.webServer>
<rewrite>
<rules><remove name=wordpress/>
<rule name=wordpress patternSyntax=Wildcard>
<match url=*/>
<conditions>
<add input={REQUEST_FILENAME} matchType=IsFile negate=true/>
<add input={REQUEST_FILENAME} matchType=IsDirectory negate=true/>
</conditions>
<action type=Rewrite url=index.php/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
詳細(xì)的設(shè)置方案,圖文教程可查看下面參考資料
三、如何獲取 WordPress 各類頁(yè)面的鏈接
這個(gè)修改模版就好了,在header.php的相應(yīng)區(qū)域添加顯示分類的標(biāo)簽就可以了.如果你不會(huì)改,至少功能上明白那個(gè)地方只是顯示的分類就好了.不是通過(guò)新建頁(yè)面實(shí)現(xiàn)的
四、怎么在wordpress的首頁(yè)插入js代碼和友情鏈接
沒(méi)必要去改文件,直接去后臺(tái)的外觀-小工具里,把“文本(任意文本或HTML)”拖到右邊的sidebar_1里,然后打開(kāi)它往里邊增加代碼就行
至于友情鏈接,WORDPRESS就有,點(diǎn)開(kāi)鏈接菜單你就知道操作了
以上就是關(guān)于wordpress主頁(yè)鏈接相關(guān)問(wèn)題的回答。希望能幫到你,如有更多相關(guān)問(wèn)題,您也可以聯(lián)系我們的客服進(jìn)行咨詢,客服也會(huì)為您講解更多精彩的知識(shí)和內(nèi)容。
推薦閱讀:
135編輯器導(dǎo)入文章為何不成功(135編輯器可以導(dǎo)入word文檔嗎)
一份完整的個(gè)人簡(jiǎn)歷模板(一份完整的個(gè)人簡(jiǎn)歷模板word)
杭州植木景觀設(shè)計(jì)咨詢有限公司(杭州植木景觀設(shè)計(jì)咨詢有限公司招聘)
海報(bào)設(shè)計(jì)免費(fèi)模板(海報(bào)設(shè)計(jì)免費(fèi)模板 設(shè)計(jì)圖)