server_name
return 301 $scheme://domain.com$request_uri
}
server {
server_name domain.com
[...]
}
server {
listen 80
server_name localhost
index index.html index.htm index.php
root /alidata/www/phpwind
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
}
#伪静态规则
include /alidata/server/nginx/conf/rewrite/phpwind.conf
access_log /alidata/log/nginx/access/phpwind.log
}
转载,仅供参考。
写到Global.asax或HttpModule(HTTP 模块)中就可以了具体怎么写得看你对ASP.NET 生命周期了解多少了,对于整个网站的操作,如记录点击率、防盗链、URL重写等都是利用HttpModule(Global.asa实际上也是HttpModule)实现的
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)