<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Show-Studio.net &#187; IIS</title>
	<atom:link href="http://show-studio.net/tag/iis/feed/" rel="self" type="application/rss+xml" />
	<link>http://show-studio.net</link>
	<description>since 2004</description>
	<lastBuildDate>Wed, 25 Aug 2010 01:06:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IIS重定向,URL指向</title>
		<link>http://show-studio.net/2006/01/28/iis%e9%87%8d%e5%ae%9a%e5%90%91url%e6%8c%87%e5%90%91/</link>
		<comments>http://show-studio.net/2006/01/28/iis%e9%87%8d%e5%ae%9a%e5%90%91url%e6%8c%87%e5%90%91/#comments</comments>
		<pubDate>Sat, 28 Jan 2006 02:06:04 +0000</pubDate>
		<dc:creator>Shikar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://show-studio.net/?p=425</guid>
		<description><![CDATA[重定向参考 重定向客户端请求是确保用户得到正确页面的一种方法，它适用于站点正在建设之中或已改变标识的情况。您可以将客户端请求重定向到同一 Web 服务器上的某个目录，或者重定向到另一个 URL。 我这里主要做一下重定向通配符和$0-$9的用法。 例子： 要http://www.abc.com/id/148指向到http://www.abc.com/find.php?id=148 先在主目录里新建一个虚拟目录取名为id在URL指向里写 *;/*;/find.php?id=$0 只不过IIS自己带的重定向URL是会被重写的，这点不是很好。想要做到重定向URL不重写的只能用ISAPI的扩展了。]]></description>
			<content:encoded><![CDATA[<p><strong>重定向参考</strong><br />
重定向客户端请求是确保用户得到正确页面的一种方法，它适用于站点正在建设之中或已改变标识的情况。您可以将客户端请求重定向到同一 Web   服务器上的某个目录，或者重定向到另一个 URL。<br />
我这里主要做一下重定向通配符和$0-$9的用法。</p>
<p>例子：<br />
要<code>http://www.abc.com/id/148</code>指向到<code>http://www.abc.com/find.php?id=148</code><br />
先在主目录里新建一个虚拟目录取名为id在URL指向里写<br />
<code>*;/*;/find.php?id=$0</code><br />
只不过IIS自己带的重定向URL是会被重写的，这点不是很好。想要做到重定向URL不重写的只能用ISAPI的扩展了。</p>
]]></content:encoded>
			<wfw:commentRss>http://show-studio.net/2006/01/28/iis%e9%87%8d%e5%ae%9a%e5%90%91url%e6%8c%87%e5%90%91/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS6 中ASP不能上传大文件解决方法</title>
		<link>http://show-studio.net/2005/08/12/iis6-%e4%b8%adasp%e4%b8%8d%e8%83%bd%e4%b8%8a%e4%bc%a0%e5%a4%a7%e6%96%87%e4%bb%b6%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/</link>
		<comments>http://show-studio.net/2005/08/12/iis6-%e4%b8%adasp%e4%b8%8d%e8%83%bd%e4%b8%8a%e4%bc%a0%e5%a4%a7%e6%96%87%e4%bb%b6%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Fri, 12 Aug 2005 14:55:02 +0000</pubDate>
		<dc:creator>Shikar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://show-studio.net/?p=354</guid>
		<description><![CDATA[今天早上发现在WebEasyMail Web中上传附件不管我改成99,999KB它还是只能上传200KB，经过查找后发现问题出在ASPMaxRequestEntityAllowed中，哎&#8230; IIS6 中ASP不能上传大文件解决方法: 首先，停止以下服务： IIS Admin Service World Wide Web Publishing Service HTTP SSL Simple Mail Transfer Protocol (SMTP) FTP Publishing Service 然后， 编辑：C:\Windows\system32\inesrv\metabase.xml 找到：ASPMaxRequestEntityAllowed 默认为 204800 （200k），改成需要的！ 最后，启动上面被停止的服务，就算完成了！ *注：可能会碰到metabase.xml 文件不能被保存，原因是你的服务未停干净。]]></description>
			<content:encoded><![CDATA[<p>今天早上发现在WebEasyMail Web中上传附件不管我改成99,999KB它还是只能上传200KB，经过查找后发现问题出在<span style="color: #3366ff;">ASPMaxRequestEntityAllowed</span>中，哎&#8230;</p>
<p>IIS6 中ASP不能上传大文件解决方法:<br />
首先，停止以下服务：<br />
<span style="color: #3366ff;"> IIS Admin Service<br />
World Wide Web Publishing Service<br />
HTTP SSL<br />
Simple Mail Transfer Protocol (SMTP)<br />
FTP Publishing Service</span></p>
<p>然后， 编辑：C:\Windows\system32\inesrv\metabase.xml<br />
找到：<span style="color: #3366ff;">ASPMaxRequestEntityAllowed</span> 默认为 204800 （200k），改成需要的！<br />
最后，启动上面被停止的服务，就算完成了！<br />
*注：可能会碰到metabase.xml 文件不能被保存，原因是你的服务未停干净。</p>
]]></content:encoded>
			<wfw:commentRss>http://show-studio.net/2005/08/12/iis6-%e4%b8%adasp%e4%b8%8d%e8%83%bd%e4%b8%8a%e4%bc%a0%e5%a4%a7%e6%96%87%e4%bb%b6%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
