phpStudy + WordPress,根据之前几篇文章,我把环境配置完,把wordpress从本地上传到服务器之后发现,卧槽~!只有首页能打开,其他的全部404,于是又百度了一波,得出结论:
CentOS 中 Apache 没有开启 Rewrite伪静态模块~
解决方法:
vim /etc/phpstudy/httpd/conf/httpd.conf
找到下面这一行,开启这个模块,不要注释:
LoadModule rewrite_module modules/mod_rewrite.so
找到<Directory “/你的根结点”> ,将 AllowOverride None 改成 AllowOverride All
#
AllowOverride controls what directives may be placed in .htaccess files.
It can be "All", "None", or any combination of the keywords:
Options FileInfo AuthConfig Limit
#
AllowOverride All
重启Apache环境
phpstudy restart
还是一句话:知识不用刻意学,要用的时候自然就会了… 搞定,收工~