首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

nginx405有关问题(post/get方法)

2012-06-27 
nginx405问题(post/get方法)使用nginx作web服务器时,如果前端通过post方法去取一个静态文件时常常会出现40

nginx405问题(post/get方法)
使用nginx作web服务器时,如果前端通过post方法去取一个静态文件时常常会出现405的结果。
解决办法:
location ~ /gjp-oss/(images|css|js|modules|flash|html)/ {
                root /app_data/static/;
                error_page 405 =200 http://$host$request_uri;
        }

热点排行