阿里云下wordpress遇到的2个坑

2015-11-21 12:02:03

1.Nginx下开启固定连接,就是apache下的rewrite:
在nginx配置文件目录下新建一个 wordpress.conf 内容为
location / {
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
然后进入到nginx.conf文件中在root那一行下面加入:
include wordpress.conf;
重启nginx
2.Mysql内网可以访问,外网访问不了
只因为开了防火墙
如果你确定ip bind 啥的你都放开了,mysql也正常跑着,3306都ok的话,估计就和我是一样的原因了
打开防火墙
vi /etc/sysconfig/iptables
在防火墙列表里加入3306端口开放
-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
重启防火墙
service iptables restart
|