ASP.NET/URL Rewriting in a development environment -
this general question dealing url rewriting in development environment. i'm developing cms learn asp.net/c#, , of course need implement url rewriting. technique known me since i've been using php several years. in php, can have local http server, modify php content directly, refresh page , see results. of course in asp.net it's not same, since need compile , publish code.
the problem have need check url rewriting-friendly links code generate in development environment - basically, make asp.net development server compatible url rewrite. or maybe not.
my question is: best solution that? use iis/apache2 (w/ mono) development server?
if you're developing i'll make guess you're doing on windows. amount of hosts out there mono , linux/apache slim it's best use iis way of doing things.
for iis vista/windows 7 have number of choices
- one url rewrite of many http module asp.net - works if want rewritting on asp.net pages. can infact map other filetypes since iis 7 changes
- a url rewriter isapi extension iis - faster using asp.net , more familiar if you're use mod_rewrite.
- play asp.net mvc instant results.
scott guthrie has big post on it, , this question lot.
Comments
Post a Comment