hi
I'm using the Microsoft UI Extension (URLRewrite Module) which results in this web.config file
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="RedirectUserFriendlyURL1" stopProcessing="false">
<match url="^schedule_details\.asp$" />
<conditions>
<add input="{QUERY_STRING}" pattern="^([^=&]+)=([^=&]+)$" />
</conditions>
<action type="Redirect" url="{C:1}/{C:2}" appendQueryString="false" redirectType="Permanent" />
</rule>
<rule name="RewriteUserFriendlyURL1" stopProcessing="false">
<match url="^([^/]+)/([^/]+)/?$" />
<action type="Rewrite" url="schedule_details.asp?{R:1}={R:2}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
it seems to work fine in Safari and Firefox, but the CSS is broken in IE. I've made sure to have the css file with the leading /, as below:
<LINK href="/css/styles.css" rel="stylesheet" TYPE="text/css">
any ideas what I might be doing wrong?
thanks