asp的程式能實現偽靜態化的方法

來源:互聯網
上載者:User

安裝說明:

1、在IIS的Isapi上添加這個篩選器,篩選器名稱 re,可執行檔選擇 Rewrite.dll ;
2、設定httpd.ini檔案

RewriteRule /news/(\d+)\.html /jsp/news\.jsp\?id=$1 [N,I]
表示將news.jsp?id=95 轉換成news/95.html

以此類推,如果你有更多的參數,則增加相應的(\d+),而後面的id=$1,則增加id=$2,等等。

目前較為普遍的動態網頁包括asp,php,jsp,shtml,jhtml,cgi......甚至還有一些自己定義的,比如:aspx,do,index,hello等等。表現形式為:news.asp?id=95。建議讀者通過re_write將其轉換成news/95.html,以便於google對改網頁的識別。

re_write是iis裡的一個模組,你可以從http://www.ZZcoo.com/re_write.zip下載,裡面有相關安裝說明。

當需要將news.jsp?id=95的映射成news/95.html時,只需設定httpd.ini檔案:
RewriteRule /news/(\d+)\.html /news\.jsp\?id=$1 [N,I]
這樣就把 /news/95.html 這樣的請求映射成了 /news.jsp?id=95

然後你在串連處這樣寫:<a href='/news/95.html'>95新聞</a>。
如果你的新聞是通過資料庫迴圈讀取出來的,那麼寫法是:
while(rs.next())
{
String id = (String)rs.getString('id');
out.print('<a hef='/news/''+id+'.html>');
out.print('95新聞');
out.print('</a>');
}

如果你在處理資料翻頁,那麼寫法是:

More_<%=Page%>_<%=type%>.html (註:page是翻頁頁數,type是資料類型)
表現形式:More_1_95.html

如果翻下一頁,則為:More_2_95.html,繼續下一頁的迴圈,則是:
More_3_95.html,以此類推。

不過你需要在httpd.ini檔案中增加以下代碼:
RewriteRule /More_(\d+)_(\d+)\.html /jsp/more\.jsp\?page=$1&type=$2 [N,I]

如果你的動態程式有多個參數需要傳遞,那麼就增加多個(\d+)即可,如下:

RewriteRule /More_(\d+)_(\d+)_(\d+)\.html /jsp/more\.jsp\?page=$1&type=$2&type2=$3 [N,I]

翻頁處理表現形式是:More_1_95.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.