nginx配置cakephp实现伪静态
2012年11月2日
1 条评论
server { listen 80; server_name www.redis.com.cn; rewrite ^(.*) http://redis.com.cn$1 permanent; } server { listen 80; server_name redis.com.cn; # root directive should be global root /var/www/redis.com.cn/public/app/webroot/; access_log /var/www/redis.com.cn/log/access.log; error_log /var/www/redis.com.cn/log/error.log; location / { index index.php index.html index.htm; try_files $uri $...