为了做seo优化,为了让链接更容易读懂在wordpress里修改固定链遇到了点问题
解决办法是:
1. .htaccess文件得可写,修改其权限为666
2.空间支持mod_rewrite,验证方法用phpinfo测试,查找有mod_rewrite才行
<!?php phpinfo();?>
3.把下面代码加入.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>