coq / coq.github.io

Source files of the coq.inria.fr website
https://coq.inria.fr/
Other
15 stars 37 forks source link

fix related-tools redirect mangling of hashtag #177

Closed palmskog closed 3 years ago

palmskog commented 3 years ago

After #176 was merged, I noticed that the redirect for related-tools was not working - it goes to the 404 URL: https://github.com/coq-community/awesome-coq%23tools

The problem is that the hashtag # is getting mangled/escaped. Per the manual for RewriteRule, the correct way to fix this is using the option NE (NoEscape), which I do in this fix.

palmskog commented 3 years ago

Can confirm that the redirect works now, thanks for the quick merge!