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博客)》
发表评论