Type: ruleset issue Domain: mit.edu The ruleset in MIT.xml says this: ```xml <rule from="^http://(www\.)?mit\.edu/" to="https://web.mit.edu/" /> ``` This translates e.g. http://www.mit.edu/~cpitcla/test (which works) into https://web.mit.edu/~cpitcla/test (404). Working HTTPS URLs for that page include https://www.mit.edu/~cpitcla/test (no need to rewrite the `www` part into `web`) and https://web.mit.edu/cpitcla/www/test (no `~`, extra `www`). This is documented here: http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3907090 . It looks like the issue was introduced by https://github.com/EFForg/https-everywhere/pull/14169 or https://github.com/EFForg/https-everywhere/pull/12002 maybe? ```diff + <rule from="^http://(www\.)?mit\.edu/" to="https://web.mit.edu/" /> ```
Type: ruleset issue
Domain: mit.edu
The ruleset in MIT.xml says this:
This translates e.g. http://www.mit.edu/~cpitcla/test (which works) into https://web.mit.edu/~cpitcla/test (404). Working HTTPS URLs for that page include https://www.mit.edu/~cpitcla/test (no need to rewrite the
wwwpart intoweb) and https://web.mit.edu/cpitcla/www/test (no~, extrawww).This is documented here: http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3907090 .
It looks like the issue was introduced by #14169 or #12002 maybe?
+ <rule from="^http://(www\.)?mit\.edu/" to="https://web.mit.edu/" />