<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ACE URL Rewrite in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088969#M22073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It has never been possible to change the URL with a Cisco loadbalancer.&lt;/P&gt;&lt;P&gt;Design decision as obviously this should be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think there is any plan to support the modification of the url.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We do not support SNI currently.&lt;/P&gt;&lt;P&gt;I'll check if there is any plan for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Feb 2009 13:32:46 GMT</pubDate>
    <dc:creator>Gilles Dufour</dc:creator>
    <dc:date>2009-02-03T13:32:46Z</dc:date>
    <item>
      <title>ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088964#M22068</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just need to know if I'm correct but I'm trying to setup a HTTP Rewarite for a hostname. I.E if a user addressed &lt;A class="jive-link-custom" href="http://test.joebloggs.com" target="_blank"&gt;http://test.joebloggs.com&lt;/A&gt; and i wanted it to redirect to &lt;A class="jive-link-custom" href="http://test1.joebloggs.com" target="_blank"&gt;http://test1.joebloggs.com&lt;/A&gt; can this function do that?&lt;/P&gt;&lt;P&gt;If so I have tried but doesn't seem to work see my action list line;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;action-list type modify http PoC_APPS_HTTP_Mod&lt;/P&gt;&lt;P&gt;  header rewrite both location header-value "&lt;A class="jive-link-custom" href="http://test" target="_blank"&gt;http://test&lt;/A&gt;" replace "&lt;A class="jive-link-custom" href="http://apps" target="_blank"&gt;http://apps&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a little new to ACE so this is a POC test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2008 13:03:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088964#M22068</guid>
      <dc:creator>isgwebb1</dc:creator>
      <dc:date>2008-11-01T13:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088965#M22069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the correct way to do it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;action-list type modify http RewriteHost&lt;/P&gt;&lt;P&gt;  header rewrite request Host header-value "test(.*)" replace "apps%1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be aware that does not redirect the user to apps. It just forwards the request to the test server with the host field rewritten in the http header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want a redirect to a different server, you need to create a redirect service which will send a 302 redirect to the client forcing a new connection to be open to apps....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 13:47:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088965#M22069</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2008-11-04T13:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088966#M22070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question concerning that matter:&lt;/P&gt;&lt;P&gt;How about Rewriting not just the Host part of the Request but the GET part, as well?&lt;/P&gt;&lt;P&gt;I tried that on the ace but failed - all I am able to rewrite is the HOST part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what I tried to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;action-list type modify http URL_REWRITE&lt;/P&gt;&lt;P&gt;  header rewrite request Host header-value "www(.*)" replace "www19%1"&lt;/P&gt;&lt;P&gt;  header rewrite request GET header-value "/de/(.*)$" replace "/en/%1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While the upper Rewrite of the HOST www to www19 worked fine, the Rewrite of the GET part did not work.&lt;/P&gt;&lt;P&gt;I also tried to just put the Rewrite of GET part alone inside, but did not work, either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope anyone can clarify this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and best regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2009 09:15:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088966#M22070</guid>
      <dc:creator>dknoezinger</dc:creator>
      <dc:date>2009-02-03T09:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088967#M22071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't modify the url.&lt;/P&gt;&lt;P&gt;If you want to do so, you have to do a redirect which will force the web browser to send the correct url.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2009 09:57:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088967#M22071</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2009-02-03T09:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088968#M22072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the information. is that not possible in general or is it just not implemented, yet? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you know anything about ACE and ssl/tls server name indication (sni)? need that to be able to migrate the ssl termination from apache servers to the ace - but could not find anything about that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and best regards,&lt;/P&gt;&lt;P&gt;daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2009 10:07:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088968#M22072</guid>
      <dc:creator>dknoezinger</dc:creator>
      <dc:date>2009-02-03T10:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088969#M22073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It has never been possible to change the URL with a Cisco loadbalancer.&lt;/P&gt;&lt;P&gt;Design decision as obviously this should be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think there is any plan to support the modification of the url.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We do not support SNI currently.&lt;/P&gt;&lt;P&gt;I'll check if there is any plan for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2009 13:32:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088969#M22073</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2009-02-03T13:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088970#M22074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is currently no plan.&lt;/P&gt;&lt;P&gt;I'm pushing hard to get it added because I think it is really useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could ask your Cisco contact to introduce an official request to the Product Manager, that can help move faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 13:43:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088970#M22074</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2009-02-04T13:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088971#M22075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for that clarification - that helps me a lot. I'll talk to the Austrian account team in case the customer insists on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 13:54:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088971#M22075</guid>
      <dc:creator>dknoezinger</dc:creator>
      <dc:date>2009-02-04T13:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: ACE URL Rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088972#M22076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Any news on that URL Rewrite support on ACE?&lt;/P&gt;&lt;P&gt;I really do not understand why is missing &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 16:22:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-url-rewrite/m-p/1088972#M22076</guid>
      <dc:creator>bogdan.badiu</dc:creator>
      <dc:date>2010-11-09T16:22:20Z</dc:date>
    </item>
  </channel>
</rss>

