wordpress个人问鼎下载链接入口ios/安卓单机炸金花免费不充钱怎么下载网站category分类目录链接301跳转
时间:2025-06-22 22:35:51 阅读(143)
个人网站建站时,修改后会变为死链接404,新建个文件夹,并有 wordpress程序建站的都知道在后台添加分类目录时候,如个人博客分类目录url链接中的category:http://www.xxx.com/category/seo。每个栏目(或二级单机炸金花免费不充钱目录)都会自动加个category,问鼎下载链接入口ios/安卓怎么下载但个人认为wordpress分类页url链接去掉category不太友好(即网上去掉分类目录category前缀方法有很多不足),对个人网站体验不好, 如果你网站之前也是去掉分类目录category前缀,百度更新一般比较慢,所以建议301跳转规则至少半年以上再去掉。以下是个人网站要进行301跳转的目录链接的例子 点击http://www.xxx.com/moban跳转到http://www.xxx.com/category/moban 用的是Apache服务器类型的虚拟主机,网上也有很多“wordpress怎么去掉分类目录category前缀?”的方法。RewriteEngine OnRewriteBase /RewriteCond %{HTTP_HOST}!^xxx.com$ [NC]RewriteRule ^(.*)$ http://www.xxx.com/$1 [L,R=301]RewriteRule ^moban$ http://www.xxx.com/category/moban [L,R=301]RewriteRule ^seo$ http://www.xxx.com/category/seo [L,R=301]<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule>