View Single Post
  #1  
Old 07-14-2009, 09:14 PM
gschultz gschultz is offline
Member
 
Join Date: Oct 2008
Posts: 13
Default redirect non latin urls

I want to redirect requests like

Code:
www.domain.tld/art%C3%ADculos
to the ASCII version:

Code:
www.domain.tld/articulos
I tried to resolve the problem by using
Code:
    <context>
      <type>redirect</type>
      <uri>/art%C3%ADculos</uri>
      <externalRedirect>1</externalRedirect>
      <statusCode>301</statusCode>
      <location>/articulos</location>
      <note></note>
      <allowOverride></allowOverride>
      <realm></realm>
      <authName></authName>
      <required></required>
      <accessControl>
        <allow></allow>
        <deny></deny>
      </accessControl>
      <authorizer></authorizer>
    </context>
but didn't succeed.

Suggestions are welcome.

Last edited by gschultz; 07-14-2009 at 09:16 PM.. Reason: non latin characters cropped
Reply With Quote