linux nginx 301重定向规则写法

linux nginx 301重定向规则写法,第1张

server {

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)实现的


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/390793.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-17
下一篇2023-05-17

发表评论

登录后才能评论

评论列表(0条)

    保存