1、找到wordpress文件夹下的.htaccess,使用chmod将 .htaccess的权限改为666。
2、找到apache配置文件httpd.conf, 把#LoadModule rewrite_module modules/mod_rewrite.so 前的#去掉,加载rewrite模块。
3、查看httpd.conf中是否默认设置了AllowOverRide为None,如果是,要改成All。或者修改wordpress所在的vhost段添加 < Directory /wp所在路径/> AllowOverride All < /Directory>
4、service restart httpd重启apache。