nginx配置cakephp实现伪静态


server {
 
    listen   80;
 
    server_name www.example.com;
 
    rewrite ^(.*) http://example.com$1 permanent;
 
}
 
 
server {
 
    listen   80;
 
    server_name example.com;
 
 
    # root directive should be global
 
    root   /var/www/example.com/public/app/webroot/;
 
 
    access_log /var/www/example.com/log/access.log;
 
    error_log /var/www/example.com/log/error.log;
 
 
    location / {
 
        index  index.php index.html index.htm;
 
        try_files $uri $uri/ /index.php?$uri&$args;
 
    }
 
 
    location ~ \.php$ {
 
        include /etc/nginx/fcgi.conf;
 
        fastcgi_pass    127.0.0.1:10005;
 
        fastcgi_index   index.php;
 
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 
    }
 
}

相关内容

    暂无相关文章