WenRou's Blog

新浪微薄腾讯微薄

最新碎语:测试图片碎语哦

您的位置:WenRou's Blog >Blog> 伪静态(wp博客)

伪静态(wp博客)

wp博客的伪静态可以新建.htaccess文件,添加如下代码,上传到根目录即可。(针对虚拟主机)

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress


也可以在 .conf文件添加(有服务器权限,比如VPS)

location / {
    index index.php index.html index.htm;
    try_files $uri $uri/ /index.php?$args;
}
当然也有人是添加下面的代码

location / {
        index index.php index.html;
        if (!-e $request_filename)
        {
                rewrite ^/(.+)$ /index.php last;
        }
}

也是可行的,不过没有上面好!


---

转载请注明本文标题和链接:《伪静态(wp博客)

发表评论

42 + 1 =
路人甲 表情
看不清楚?点图切换 Ctrl+Enter快速提交

网友评论(8)

过来看看你的博客,希望每天都更新一些文章。
奇虎分享网 8年前 (2016-08-17) 回复
今天才发现你的博客,连着看了几篇呢   http://www.xevip.cn
小易分享网 8年前 (2016-08-15) 回复
正解
松露是什么 8年前 (2016-01-21) 回复
后台设置一下也行吧 固定链接那
东北松子 8年前 (2016-01-21) 回复
分享一下我的网站,http://www.zuilizhi.net/? 最励志网
最励志网 9年前 (2015-09-19) 回复
很好的网站,赞一个,加油!
歪妖内涵网 9年前 (2015-09-15) 回复
这样挺方便
卡丝 9年前 (2015-08-11) 回复
伪静态 wp的话 在固定链接那 填写代码也行
怎么在网上赚钱 9年前 (2015-08-02) 回复