我有这个代码
RewriteEngine On
RewriteBase /
RewriteRule ^12345$ "https://example.com/?prefill_Line1%0ALine2%0A" [R=301]
浏览器将我的网址重定向到:
https://example.com/?prefill_Line1ALine2A
,我希望它完全重定向到:
https://example.com/?prefill_Line1%0ALine2%0A
我希望在URL中编码“换行符” %0A
的符号,但是不知何故%0
被删除了。