雖然從SEO的URL標(biāo)準(zhǔn)看對(duì)于URL尾巴是否帶有斜杠這個(gè)問(wèn)題并沒(méi)有特別的要求。比如我們看到"http://bjj.org.cn/panel/"和"http://bjj.org.cn/plugins/"這樣的URL尾巴后面都是帶有斜杠的,但是默認(rèn)的WordPress是沒(méi)有的,我們需要添加插件設(shè)置才可以或者用代碼實(shí)現(xiàn)。
// 給WordPress分類目錄鏈接添加斜杠 http://bjj.org.cn/trailingslashit.html function idcxen_trailingslashit($string, $type_of_url) { if ( $type_of_url != 'single' ) $string = trailingslashit($string); return $string; } add_filter('user_trailingslashit', 'idcxen_trailingslashit', 10, 2);
添加到當(dāng)前主題的 Functions.php 就可以實(shí)現(xiàn)的。或者我們也可以安裝 LESEO 插件來(lái)解決這個(gè)問(wèn)題。
如上圖所示,我們?cè)赟EO優(yōu)化選項(xiàng)中開(kāi)啟頁(yè)面添加反斜杠即可。
評(píng)論