Ubuntu 安装 StartBBS 出错和解决办法
Ubuntu 安装 StartBBS 出错和解决办法
Ubuntu 12.04
php-5.3.27
mysql-5.1.68
nginx-1.4.2
安装之前需要做以下配置(app/config/config.php):
2.1 安装出现 404 错误
在 nginx 的 nginx.conf 文件中添加
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?$1 last;
# rewrite "^/(.*)$" /index.php last;
# break;
}
如下:
2.2 js 和 css 文件不能加载,报404 错误,页面的数据是正常的,即php部分是正常的
这个问题让我抓狂了差不多一天,主要也是我自己对nginx还不熟吧。
之所以出现这个问题,是因为2.1中添加的那段配置的位置很关键,我之前将其放在 location / {…} 中,后来也尝试了放在
location / {…} 外,都导致同样问题的发生。最后我移到 location ~ \.php.*$ {…} 就好了。
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23