We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
比如,github上下载东西,数据实际上是在形如https://github-production-release-asset-2e65be.s3.amazonaws.com/……这样的网址下的,但并非所有的s3.amazonaws.com都访问困难。
https://github-production-release-asset-2e65be.s3.amazonaws.com/……
这时候,可以在direct里面写github*.s3.amazonaws.com吗?
direct
github*.s3.amazonaws.com
The text was updated successfully, but these errors were encountered:
据我测试,把HTTPS换成HTTP基本就稳定,443端口干扰比较严重,不需要走代理
Sorry, something went wrong.
@miaomiaosoft 这个确实,我也发现过,同样的资源80就是好着的。不过如何替换呢?有软件规则还是每次下载时手动修改?
用重定向扩展,比如:https://chrome.google.com/webstore/detail/header-editor/eningockdidmgiojffjmkdblpjocbhgh
正则表达式 重定向规则: https://github-production-release-asset-(\S+).s3.amazonaws.com
重定向至: http://github-production-release-asset-$1.s3.amazonaws.com
有道理,谢啦!
No branches or pull requests
比如,github上下载东西,数据实际上是在形如
https://github-production-release-asset-2e65be.s3.amazonaws.com/……
这样的网址下的,但并非所有的s3.amazonaws.com都访问困难。这时候,可以在
direct
里面写github*.s3.amazonaws.com
吗?The text was updated successfully, but these errors were encountered: