Was it helpful?

Solution

RewriteRule ^([^\.\?]+)/?(\?.*)?$ /$1.aspx$2 [L]

OTHER TIPS

What version of ISAPI_Rewrite you are using - 2 or 3.

The v3 syntax is:

RewriteBase /
RewriteCond %{REQUEST_URI}.aspx -f
RewriteRule ^([^/.]+)$ /$1.aspx [L]
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top