首页 > 代码库 > nginx php rewrite配置
nginx php rewrite配置
server { listen 80; server_name xxx.cn www.xxx.cn; index index.html index.htm index.php; root /data/web/apps; location / { try_files $uri $uri/ /index.php?$query_string;
if ( !-e $request_filename){
rewrite ^/(.*)$ /index.php?r=$1 last;
}
} location ~ \.php$ { fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } # 媒体文件设置缓存 location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4)$ { expires 300d; } # js css 文件的缓存(目前在开发阶段,设置一个比较短的时间为好) location ~ .*\.()$ { expires 900h; } location ~ /\.(git|gitignore|ht|svn|src|tmp) { deny all; }}
nginx php rewrite配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。