Prevent URL-encoding of characters in link in MediaWiki

∥☆過路亽.° 提交于 2019-12-04 21:59:08

That is not a valid URI; per RFC 3986, an URI consists of the characters ALPHA / DIGIT / "-" / "." / "_" / "~" / ":" / "/" / "?" / "#" / "[" / "]" / "@" / "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "="; everything else must be percent-encoded. MediaWiki automatically corrects invalid URLs (as would any other CMS, probably), so if this wiki is owned by someone else, you are out of luck. If it is yours, you can use some method to avoid the built-in HTML processing (e. g. enable the <html> tag); make sure you know what you are doing, this usually has security consequences.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!