オンラインバリデーターはXMLページのURLにエラーをスローします。ここに影響を受ける文字列です:
http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031
エラーは2番目の等号exp = 907031の場所に示されます。
私は前に検索し、いくつかの記事では等号は許されませんが、最初の等号がどのように渡されたのか、私はそれをurquoteすればリンクは機能しません。
このエラーを回避するには、ここで何ができますか?
The ampersand is the problem. Ampersands in xml act as the start of an encoded character, so you need to encode the ampersand itself. E.g. &. Change your complete URL to this: http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031
&