How do I rewrite URL's in ASP.NET?
I would like users to be able to goto http://www.website.com/users/smith instead of http://www.website.com/?user=smith
|
3
|
How do I rewrite URL's in ASP.NET? I would like users to be able to goto http://www.website.com/users/smith instead of http://www.website.com/?user=smith
|
|||
|
|
|
|
Try the Managed Fusion Url Rewriter and Reverse Proxy: http://www.managedfusion.com/products/url-rewriter/ The rule for rewriting this would be:
This is also available through CodePlex http://urlrewriter.codeplex.com |
||||||
|
|
|
Scott Guthrie covers how to do this natively in .Net pretty extensively here. I've used the httpmodule approach and it works well. It's basically what ManagedFusion is doing for you. |
|||
|
|
|
I have used an httpmodule for url rewriting from www.urlrewriting.net with great success (albeit I believe a much earlier, simpler version) If you have very few actual rewriting rules then url mappings built in to .NET 2.0 are probably an easier option, there are a few write ups of these on the web, the 4guysfromrolla one seems fairly exhaustive but as you can see they don't support regular expression mappings are are as such rendered fairly useless in a dynamic environment (assuming "smith" in your example is not a special case then these would be of no use) |
||
|
|