Because I'm on a shared windows hosting environment I'm unable to access IIS manager in order to convert .htaccess rewrite rules to web.config rewrite rules.
Below are the rules I'm trying to convert, I've looked at resources and tried writing the rules myself but no luck. I keep getting 505 errors.
.htaccess Rules:
# Canonical name 301 redirect
RewriteCond $1 ^(index\.asp)?$ [OR]
# or if request is for image, css, or js file
RewriteCond $1 \.(gif¦jpg¦ico¦css¦js)$ [NC,OR]
# or if URL resolves to existing file
RewriteCond %{REQUEST_FILENAME} -f [OR]
# or if URL resolves to existing directory
RewriteCond %{REQUEST_FILENAME} -d
# then skip the rewrite to WP
RewriteRule ^(.*)$ - [S=1]
# else rewrite the request to WP
RewriteRule . /handle_url.asp?url=%{REQUEST_FILENAME} [L,QSA]
My unsuccessful attempt to translate it myself:
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{URL}" pattern="^(index\.asp)?$" ignoreCase="false" negate="true" />
<add input="{URL}" pattern="\.(gif¦jpg¦ico¦css¦js)$" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="-" appendQueryString="true" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="." ignoreCase="false" />
<action type="Redirect" redirectType="Permanent" url="/handle_url.asp?url=%{REQUEST_FILENAME}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Do any of you know what I've translated incorrectly?
Thank you very much for your time, I really appreciate it!