asp.net下URL網址重寫成.html格式、RSS、OPML的知識總結

來源:互聯網
上載者:User

一、URL網址重寫
1、在MSDN中下載一個檔案,將 ActionlessForm.dllURLRewriter.dll放到bin目錄下。這是MSDN中關於URL重寫的一篇文章裡的地址。在 ASP.NET 中執行 URL 重寫

2、將web.config檔案中添加下面的代碼

<!-- 自訂配置節 -->
<configSections>
<section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
</configSections>

<!-- RUL重寫規則 -->
<RewriterConfig>
<Rules>
<!-- XXX1 模組重寫規則 -->
<RewriterRule>
<LookFor>~/(\d{4})/(\d{2})/(\d{2})\.html</LookFor>
<SendTo><![CDATA[~/mypage.aspx?param1=$1&param2=$2&param3=$3]]></SendTo>
</RewriterRule>
<!-- XXX2 模組重寫規則 -->
<RewriterRule>
<LookFor>~/aaa/bbb/mypage/([\w]+)\.html</LookFor>
<SendTo><![CDATA[~/aaa/bbb/mypage.aspx?param1=$1]]></SendTo>
</RewriterRule>
</Rules>
</RewriterConfig>

<!-- 註冊HTTP模組 -->
<httpModules>
<add type="URLRewriter.ModuleRewriter, URLRewriter" name="ModuleRewriter" />
</httpModules>
<!--<httpHandlers>
<add verb="*" path="*.aspx" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
</httpHandlers>-->

3、在IIS裡將.html檔案對應給 X:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll

4、使用方法:
只要修改web.config裡的重寫規則就可以了。
需要注意的是:LookFor裡面的一對()對應SendTo裡面的一個$[1、2、3...n]

二、關於RSS
RSS是用於RSS閱讀器的一種檔案格式,也可以叫新聞種子,RSS種子等等。RSS是一個XML檔案,尾碼名可以是.aspx,但內容必須是Xml的。他的文法如下:
------------------- 一個RSS種子.xml --------------------------------
<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>這個RSS種子(頻道)的名稱、標題</title>
<link>這個RSS種子(頻道)的串連地址.xml </link>
<description>這個RSS種子(頻道)的簡要說明,隨你怎麼寫...</description>

<item>
<title>具體的引用標題,比如一條新聞的標題</title>
<link>http://www.該條新聞的串連地址.com/真實的html或者aspx地址.aspx?aaa=1&bbb=2</link>
<description>該條新聞的介紹,一般是顯示一部分的新聞內容...</description>
<pubDate>這個不用說了,發布日期</pubDate>
</item>
</channel>
</rss>
---------------------------------------------
為了讓搜尋引擎小蜘蛛知道這個種子在那裡,你可以在<head>中加入一個<link>告訴它。
<head>
...... ......
<link rel="alternate" type="application/rss+xml" title="我的RSS標題" href="http://www.myweb.com/rss/myrss.xml"/>
...... ......
</head>

-----------------------------------------------
為了讓那些使用RSS新聞閱讀器的人可以訂閱種子,你需要把這個檔案串連到[RSS]的圖片或一個(RSS)串連

三、關於OPML
OPML檔案其實就是RSS檔案的目錄集合,上面是一個RSS檔案,而OPML是一大堆RSS檔案的目錄。
OPML檔案也是XML格式的,他的文法如下:
-------------- myopml.opml ---------------------
<?xml version="1.0" encoding="gb2312"?>
<opml version="1.0">
<head>
<title>這個OPML目錄檔案的標題</title>
<link>這個OPML目錄檔案的串連地址.opml</link>
<description>這個OPML目錄檔案的簡要說明,隨你怎麼寫...</description>
<head>

<body>
<!-- 一條 outline 記錄一個RSS種子地址 -->
<outline type="rss"
title="RSS種子標題"
text="RSS種子文本,跟標題差不多"
description="RSS種子的簡要說明"
xmlUrl="RSS種子的串連地址.xml"
htmlUrl="RSS種子的html串連地址.xml"
/>
...... ......
</body>
</opml>
------------------------------------------------------
為了讓搜尋小蜘蛛知道OPML檔案在那裡,你可以在<head>中寫一句<link>告訴它
<head>
... ...
<link rel="outline" type="application/xml" title=這個OPML檔案的標題" href="這個OPML檔案的地址.opml"/>
... ...
</head>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.