On Mon, Feb 18, 2013 at 10:52 AM, Pablo Florencio
<pablofloren...@gmail.com> wrote:
> The problem I see is that mod_proxy_html can't convert urls when there is a
> carry return inside it. For example, here there are two <a> links:
>
>
> <a target="Download1" title="Download Test1"
> href="https://10.10.10.10/example/working_OK.html";</a>
>
> <a target="Download2" title="Download Test2" href="
> https://10.10.10.10/example/not_working.html";</a>
>
>
> The second one has a CR right after href definition, and as a result
> mod_proxy_html can't convert it. I would like to ask if someone knows a way
> to let mod_proxy_html understand how to interpret that CR, or just a way to
> remove that CR.

URIs can't contain a CR. I suggest you edite the html source so that
it looks like this:
<a target="Download2" title="Download Test2"
href="https://10.10.10.10/example/not_working.html";</a>

Krist



-- 
krist.vanbes...@gmail.com
kr...@vanbesien.org
Bern, Switzerland

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to