sharepoint - conditional URL re-writes using IIS 7.5 -


we have bilingual sharepoint website , ensure french content funnelled through our french domain, lets call _frenchdomain.com.

languages variations in sharepoint separated folder structure, in our case can go _http://englishdomain.com/en english content , _http://englishdomain.com/fr french content.

my question how can iis recognize any instance of _http://englishdomain.com/fr/* , instead rewrite _http://frenchdomain.com/fr/*

    <rule name="fr">       <match url="fr/.*"/>       <conditions>         <add input="{http_host}" pattern="^frenchdomain.com$" negate="true" />       </conditions>       <action type="redirect" url="http://frenchdomain.com/{r:0}" redirecttype="permanent"/>     </rule> 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -