How to enable pretty urls with Asp.Net MVC and IIS6

本文介绍如何在IIS6上部署ASP.NET MVC应用程序,并保持美观的URL。通过使用ISAPI重写和特定扩展映射,可以实现良好的性能和用户友好的URL结构。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

I’ve been working with the asp.net mvc bits lately and everything has been going smooth.  That is until I tried to deploy to a Windows 2003 server.  All of a sudden my pretty urls looked like crap.  When it comes to deploying an Asp.Net MVC app to IIS6, you have two options. 

  1. You can either setup a wildcard mapping
  2. You can add an isapi mapping and have an extension (.mvc) use the asp.net runtime.  

Both techniques have their good and bad points.  The wildcard mapping gives you nice looking urls, but all requests (including images, css, scripts, etc) go through the asp.net pipeline.  If performance is a concern, and generally it should be, you’ll want to avoid needlessly mapping all requests through the asp.net pipeline.  Alternatively, mapping just an extension to the asp.net runtime gives you the best performance but the urls are less desirable (Eg. http://localhost/Home.mvc/About).

My solution is to use Isapi_rewrite to transparently rewrite all nice urls to *.mvc file extension requests.  So, the user sees http://localhost/Home/About, while the webserver (after the isapi_rewrite filter has been applied) sees http://localhost/Home.mvc/About.  Isapi_rewrite is fast (written in c/c++), so you don’t have to worry about the performance, and your static files (scripts, images, etc) do not go through the pipeline.  Best of all, your users (and Google) see pretty urls.  It’s a win win setup, for IIS6.

On to the good part…

  1. Setup your .mvc extension map with IIS
    1. Open IIS Mangaement Console
    2. Expand your computer
    3. Expand Websites
    4. Right-click the website you’d like to edit (Most times it’ll be called "Default Web Site") and click Properties
    5. Click the Home Directory tab
    6. Click Configuration…
    7. Click Add
    8. Executable: c:/windows/microsoft.net/framework/v2.0.50727/aspnet_isapi.dll
    9. Extension: .mvc
    10. Verbs: Limit to: GET,HEAD,POST,DEBUG
    11. Un-check Verify that file exists
    12. Click Ok
  2. Install isapi_rewrite
  3. Put an .htaccess file in your website directory and edit as follows (make note of how I ignore the Content directory):
    RewriteEngine on
    RewriteRule ^Home(/)?$ $9 [NC,R=301]
    RewriteRule ^$ Home [NC]
    RewriteRule ^([/w]+)$ $1.mvc [NC]
    RewriteRule ^(?!Content)([/w]*)/(.*) $1.mvc/$2 [NC]
    
  4. Modify your routes to include the routes with and without the .mvc extension.  My routes look like:
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    routes.MapRoute(
    "Default",                                              // Route name
    "{controller}/{action}/{id}",                           // URL with parameters
    new { controller = "Home", action = "Index", id = "" }, // Parameter defaults
    new { controller = @"[^/.]*" }                          // Parameter constraints - Do not allow dots in the controller name
    );
    routes.MapRoute(
    "Default.mvc",                                          // Route name
    "{controller}.mvc/{action}/{id}",                       // URL with parameters
    new { controller = "Home", action = "Index", id = "" }, // Parameter defaults
    new { controller = @"[^/.]*" }                          // Parameter constraints - Do not allow dots in the controller name
    );
    

Using both routes with and without the .mvc extension gives you an added bonus.  The built in helper functions for generating routes use the first route found, so it will not generate urls with the .mvc extension.  The mvc framework does recognize and process both forms of urls, though.  So defining routes this way preserves debugging with cassini as well as deployment scenarios.

One other thing to note.  The "RewriteRule ^Home(/)?$ $9 [NC,R=301]" line in the .htaccess file is there to redirect requests to /Home and /Home/ back to the base url.  "RewriteRule ^$ Home [NC]" then redirects requests to the base url to the home controller (transparent to the user).  The final two lines transparently map controllers to urls with the .mvc extension, allowing the request to be processed by asp.net (via the IIS .mvc extension map setup on step 1).

Everything seems to be working great.  Hope this helps anyone in the same position.

电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值