CentOS6.532位nginx.php如何显示javascript
Re阿里linux下php如何显示javascript
采用CentOS 6.5 32位的LINUX系统,nignx+php.其它php文件都正常。
用a.php输出JS不行,直接访问a.php会自动下载PHP文件。直接下载的就是源代码。晕。
这是我的nignx配置,请帮助。
server {
listen 80;
server_name xxx .com www. xxx.com;
index index.html index.htm index.php;
root /alidata/www/xxx/;
location ~ ^/xxx(.*)$ {
alias /alidata/www/xxx/$1;
}
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
}
-------------------------
ReCentOS6.532位nginxphp如何显示javascript
这是a.php 的内容
document.write(' 用户名: 密 码: 注册新用户 ');
-------------------------
ReCentOS6.532位nginx.php如何显示javascript
没有人知道吗??? 高手在呢?
赞0
踩0