azure - Custom provider in the url rewite module -
i developing on website hosted in azure on vm. changing website able run azure website.
now problem: using url rewrite module iis database provider, works in vm. database provider users of website can create own simple rewrite rules.
but when upload website azure website , access url that's specified in database error:
"the page cannot displayed because internal server error has occurred.".
this logging configuration use:
<rewrite> <rules configsource="rewriteinbound_live.config" /> <outboundrules configsource="rewriteoutbound_live.config" /> <providers> <provider name="db" type="dbprovider, microsoft.web.iis.rewrite.providers, version=7.1.761.0, culture=neutral, publickeytoken=0545b0627da60a5f"> <settings> <add key="connectionstring" value="*****" /> <add key="storedprocedure" value="sp_getrewrittenurl" /> <add key="cacheminutesinterval" value="60" /> </settings> </provider> </providers> </rewrite>
i've turned on web server logging doesn't give me information, , i've enabled application logging doesn't give me information.
my question, possible use custom providers url rewite module in azure, of can achieved in way?
Comments
Post a Comment