先来几张去掉后的效果图
1.文章页面
2.独立页面
3.分类页面
嗯,去掉后是不是感觉link变得简洁了好多。
下面是配置文件
nginx 配置
server {
listen 80;
server_name yourdomain.com;
root /home/yourdomain/www/;
index index.html index.htm index.php;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}
location ~ .*\.php(\/.*)*$ {
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9000;
}
access_log logs/yourdomain.log combined;
}
apache 配置
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
后台处理
配置完服务器后还有在后台永久链接那儿将自定义文章路径改成WordPress类型
然后使用地址重写功能保存设置即可啦。
发表回复