zoukankan      html  css  js  c++  java
  • .net iis6中配置伪静态

    1、右键点击 要设置网站的网站

    2、属性 ——》主目录 ——》配置——》

    3、如右侧窗口,找到 .aspx 扩展名——》编辑——》复制 可执行文件的路径——》关闭 

     

    4、点击 添加——》粘贴 刚复制的 可执行文件路径 

    5、扩展名填写 .html (如果是 .htm 或者 任意你想要的扩展都可以 前提是以后的应用程序扩展列表里边没有该扩展)

    6、不选中 确认文件是否存在 

    7、确定

    iis6 web.config 伪静态配置方法

    1、参数用()括起来,使用 $1 来获得参数。

    2、多个参数的时候使用&分割。

    3、把Intelligencia.UrlRewriter.dll添加到bin目录

    <?xml version="1.0"?>
    
    <configuration>
    
        <configSections>
            <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
        </configSections>
        <system.web>
            <httpModules>
                <add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter"/>
             </httpModules>
        </system.web>
        <rewriter>
            <!--首页-->
            <rewrite url="~/default.html$" to="~/default.aspx" processing="stop"/>
            <!--新闻-->
            <rewrite url="~/news/list-([A-Za-z0-9-]*).html$" to="~/NewsList.aspx?typeUrl=$1" processing="stop"/>
            <rewrite url="~/news/list-([A-Za-z0-9-]*)-([0-9]*).html$" to="~/NewsList.aspx?typeUrl=$1&page=$2" processing="stop"/>
            <!--新闻详细-->
            <rewrite url="~/news/([A-Za-z0-9-]*).html$" to="~/NewsDetail.aspx?url=$1" processing="stop"/>
        </rewriter>
    </configuration>

    另一种配置格式:
    <configuration>
    <!--伪静态化配置Begin-->
        <RewriterConfig>
            <Rules>
     
                <RewriterRule>
                    <LookFor>~/Exp/test.html</LookFor>
                    <SendTo>~/Exp/Default.aspx</SendTo>
                </RewriterRule>
                <RewriterRule>
                    <LookFor>~/Expert/e(d+).html</LookFor>
                    <SendTo>~/Expert/Exp.aspx?ID=$1</SendTo>
                </RewriterRule>
                <RewriterRule>
                    <LookFor>~/Expert/Sol(d+).html</LookFor>
                    <SendTo>~/Expert/ExpertSol.aspx?ID=$1</SendTo>
                </RewriterRule>
              
            </Rules>
        </RewriterConfig>
        <!--伪静态化配置End-->
  • 相关阅读:
    利用clear清除浮动的一些问题
    配置SpringBoot方便的切换jar和war
    java并发实战:连接池实现
    canvas绘制圆角头像
    对象的合并及拷贝
    JS数组去重
    浏览器端用JS实现创建和下载图片
    超过固定宽度(或行数)显示...(或省略)
    ssh实现免密登录
    Mac 日常使用问题收集
  • 原文地址:https://www.cnblogs.com/zhanjun/p/3372152.html
Copyright © 2011-2022 走看看