<?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>伪静态 &#187; 伪静态</title>
	<atom:link href="http://www.weijingtai.com/tag/%e4%bc%aa%e9%9d%99%e6%80%81/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weijingtai.com</link>
	<description>Url rewrite 伪静态规则使用收集</description>
	<lastBuildDate>Mon, 14 Jun 2010 03:30:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>discuz X 伪静态规则-IIS -Nginx-Apache</title>
		<link>http://www.weijingtai.com/2010/05/07/discuz-x-iis-nginx-apache/</link>
		<comments>http://www.weijingtai.com/2010/05/07/discuz-x-iis-nginx-apache/#comments</comments>
		<pubDate>Fri, 07 May 2010 07:16:12 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[discuz]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[discuzx]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=119</guid>
		<description><![CDATA[康胜刚刚发布了discuz x beta 版本，在管理后台，全局 » 优化设置 » 搜索引擎优化 选中url静态化的选项即可，相关规则文件官方已经出示例]]></description>
			<content:encoded><![CDATA[<p>康胜刚刚发布了<a href="http://www.discuz.net/thread-1628349-1-1.html" target="_blank">discuz x beta </a>版本，在管理后台，全局 » 优化设置 » 搜索引擎优化 选中url静态化的选项即可，相关规则文件官方已经出示例，摘录如下：</p>
<p>IIS-Isapi</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">[ISAPI_Rewrite]
&nbsp;
[ISAPI_Rewrite]
&nbsp;
# 3600 = 1 hour
CacheClockRate 3600
&nbsp;
RepeatLimit 32
&nbsp;
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule ^(.*)/topic-(.+)\.html\?*(.*)$ $1/portal\.php\?mod=topic&amp;topic=$2&amp;$3
RewriteRule ^(.*)/article-([0-9]+)\.html\?*(.*)$ $1/portal\.php\?mod=article&amp;articleid=$2&amp;$3
RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html\?*(.*)$ $1/forum\.php\?mod=forumdisplay&amp;fid=$2&amp;page=$3&amp;$4
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$ $1/forum\.php\?mod=viewthread&amp;tid=$2&amp;extra=page\%3D$4&amp;page=$3&amp;$5
RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html\?*(.*)$ $1/forum\.php\?mod=group&amp;fid=$2&amp;page=$3&amp;$4
RewriteRule ^(.*)/space-(username|uid)-(.+)\.html\?*(.*)$ $1/home\.php\?mod=space&amp;$2=$3&amp;$4
RewriteRule ^(.*)/([a-z]+)-(.+)\.html\?*(.*)$ $1/$2\.php\?rewrite=$3&amp;$4</pre></div></div>

<p><span id="more-119"></span><br />
Apache</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;"># 将 RewriteEngine 模式打开
RewriteEngine On
&nbsp;
# 修改以下语句中的 /discuz 为你的论坛目录地址，如果程序放在根目录中，请将 /discuz 修改为 /
RewriteBase /discuz
&nbsp;
# Rewrite 系统规则请勿修改
RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&amp;topic=$1
RewriteRule ^article-([0-9]+)\.html$ portal.php?mod=article&amp;articleid=$1
RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&amp;fid=$1&amp;page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&amp;tid=$1&amp;extra=page\%3D$3&amp;page=$2
RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&amp;fid=$1&amp;page=$2
RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&amp;$1=$2
RewriteRule ^([a-z]+)-(.+)\.html$ $1.php?rewrite=$2</pre></div></div>

<p>Nginx Web Server</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">rewrite ^(.*)/topic-(.+)\.html$ $1/portal.php?mod=topic&amp;topic=$2 last;
rewrite ^(.*)/article-([0-9]+)\.html$ $1/portal.php?mod=article&amp;articleid=$2 last;
rewrite ^(.*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&amp;fid=$2&amp;page=$3 last;
rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&amp;tid=$2&amp;extra=page%3D$4&amp;page=$3 last;
rewrite ^(.*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&amp;fid=$2&amp;page=$3 last;
rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&amp;$2=$3 last;
rewrite ^(.*)/([a-z]+)-(.+)\.html$ $1/$2.php?rewrite=$3 last;</pre></div></div>

<p>IIS用户可直接下载些httpd.ini文件放至网站根目录下  <a class="downloadlink dlimg" href="http://www.weijingtai.com/wp-content/plugins/download-monitor/download.php?id=15" title="Version beta downloaded 685 times" ><img src="http://www.weijingtai.com/wp-content/uploads/2009/04/download.png" alt="Download discuzx Version beta" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2010/05/07/discuz-x-iis-nginx-apache/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>uchome rewrite for nginx</title>
		<link>http://www.weijingtai.com/2010/03/27/uchome-rewrite-nginx/</link>
		<comments>http://www.weijingtai.com/2010/03/27/uchome-rewrite-nginx/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 18:36:11 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[discuz]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[uchome]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=118</guid>
		<description><![CDATA[ngnix下uchome的伪静态规则，可以和discuz的规则合用]]></description>
			<content:encoded><![CDATA[<p>ngnix下uchome的伪静态规则，可以和<a href="http://www.weijingtai.com/2010/03/27/discuz-rewrite-nginx">discuz</a>的规则合用</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">location / {
     rewrite ^(.*)/(space|network)\-(.+)\.html$ $1/$2.php?rewrite=$3 last;
     rewrite ^(.*)/(space|network)\.html$ $1/$2.php last;
     rewrite ^(.*)/([0-9]+)$ $1/space.php?uid=$2 last;
        }</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2010/03/27/uchome-rewrite-nginx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>discuz rewrite for nginx</title>
		<link>http://www.weijingtai.com/2010/03/27/discuz-rewrite-nginx/</link>
		<comments>http://www.weijingtai.com/2010/03/27/discuz-rewrite-nginx/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 18:28:24 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[discuz]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=116</guid>
		<description><![CDATA[discuz 在nginx下的伪静态规则！ （ps：discuz的伪静态规则 ，一般情况下是通用的，不必区分是discuz6还是7）]]></description>
			<content:encoded><![CDATA[<p>discuz 在nginx下的伪静态规则！ （ps：discuz的伪静态规则 ，一般情况下是通用的，不必区分是discuz6还是7）</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">location / {
      rewrite ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 last;
      rewrite ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&amp;amp;page=$3 last;
      rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&amp;amp;extra=page%3D$4&amp;amp;page=$3 last;
      rewrite ^(.*)/profile-(username|uid)-(.+)\.html$ $1/viewpro.php?$2=$3 last;
      rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 last;
      rewrite ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 last;
        }</pre></div></div>

<p><a href="http://www.weijingtai.com/2010/03/27/uchome-rewrite-nginx/">Uchome的在这里</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2010/03/27/discuz-rewrite-nginx/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>shopex 4.84伪静态设置方法For win（转）</title>
		<link>http://www.weijingtai.com/2009/08/05/shopex-484-iis6/</link>
		<comments>http://www.weijingtai.com/2009/08/05/shopex-484-iis6/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:18:02 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[shopex]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=108</guid>
		<description><![CDATA[之前介绍了一篇关于shopex4.84的伪静态设置方法，不少朋友觉得不够详细，正好好友诡谲写有一篇详细的介绍，就不再重复，直接转过来。]]></description>
			<content:encoded><![CDATA[<p>之前介绍了一篇关于<a href="http://www.weijingtai.com/2009/04/16/shopex-484-iis/" target="_blank">shopex4.84的伪静态设置</a>方法，不少朋友觉得不够详细，正好好友<a href="http://www.xmlchina.org">诡谲</a>写有一篇详细的介绍，就不再重复，直接转过来。</p>
<p>============================以下为原文============================</p>
<p>由于Shopex官方对win系统支持不够,而且直接在后台开启伪静态会跳出提示,告诉你的服务器不是Apache.不能开启.但是我们依然可以绕过这个限制,需要修改一个文件,该文件位于/core/admin/controller/system/目录下,我们需要修改ctl.setting.php这个文件.但是大家下载打开却发现很多乱码,根本不知道如何下手.其实这是经过zend加密过的源码,我们需要对其进行解密.例如Dezender.这个软件可以直接将经过zend加密过的源码还原成原来的文件.如下图所示.<br />
<span id="more-108"></span></p>
<p><a class="highslide" onclick="function onclick() { function onclick() { return vz.expand(this) } }" href="http://www.weijingtai.com/wp-content/uploads/2009/08/eb5b_dezender.jpg"><img class="alignnone size-medium wp-image-1923" style="width: auto;" title="dezender" src="http://www.weijingtai.com/wp-content/uploads/2009/08/9b3e_dezender-520x442.jpg" alt="dezender" width="520" height="442" /></a></p>
<p>解密之后,我们需要对其进行修改.在文本编辑器查里打开文件</p>
<p>在第185行找到这段:</p>
<blockquote><p>if ( !strpos( $content, &#8220;[*[".md5( $code )."]*]&#8221; ) )</p></blockquote>
<p>将其替换成</p>
<blockquote><p>if ( <span style="color: #ff0000;">false &amp;&amp;</span> !strpos( $content, &#8220;[*[".md5( $code )."]*]&#8221; ) )</p></blockquote>
<p>就是在!strpos前面添加一个false,然后我们将这个文件上传到服务器相应位置.然后我们就能在后台开启伪静态了.</p>
<p>文章转载自:<a href="http://www.xmlchina.org/original-shopex-484-pseudo-static-method-as-well-as-covering-the-iis-server-nginx/"><span style="color: #0854c7;">http://www.xmlchina.org/original-shopex-484-pseudo-static-method-as-well-as-covering-the-iis-server-nginx/</span></a></p>
<p>=========================以上为原文==========================</p>
<p>另外，由于解密软件在xpsp2以上系统不能正常运行，附4.84 21715版本处理好的文件，替换文件前请先备份，以免不符。</p>
<a class="downloadlink dlimg" href="http://www.weijingtai.com/wp-content/plugins/download-monitor/download.php?id=13" title="Version 4.8.4.25715 downloaded 533 times" ><img src="http://www.weijingtai.com/wp-content/uploads/2009/04/download.png" alt="Download shopex4.84-modify Version 4.8.4.25715" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/08/05/shopex-484-iis6/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>wordpress FOR IIS7 URL Rewrite</title>
		<link>http://www.weijingtai.com/2009/07/13/wordpress-rewrite-for-iis7/</link>
		<comments>http://www.weijingtai.com/2009/07/13/wordpress-rewrite-for-iis7/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 06:54:18 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[IIS7-rewrite]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[中文tag]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=107</guid>
		<description><![CDATA[wordpress 官方已经内置了 IIS7 URL Rewrite 的支持，但对于中文用户来说，官方内置的伪静态规则不能完好的支持中文tag的问题。虽然可以更改系统文件来解决，但比较麻烦，而且不方便，所以一直没介绍过。现在帖出一个自用的的规则，可以解决wordpress的中文tag的问题。]]></description>
			<content:encoded><![CDATA[<p>wordpress 官方已经内置了 IIS7 URL Rewrite 的支持，但对于中文用户来说，官方内置的伪静态规则不能完好的支持<a href="http://www.weijingtai.com/tag/%e4%b8%ad%e6%96%87tag/">中文tag</a>的问题。虽然可以更改系统文件来解决，但比较麻烦，而且不方便，所以一直没介绍过。现在帖出一个自用的的规则，可以解决wordpress的中文tag的问题。<br />
<span id="more-107"></span><br />
将下列代码加入到web目录下的web.config文件的&lt;system.webServer&gt;之后即可。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">        &lt;rewrite&gt;
           &lt;rules&gt;
                &lt;clear /&gt;
                &lt;rule name=&quot;wordpress2.7&quot; stopProcessing=&quot;true&quot;&gt;
                    &lt;match url=&quot;.*&quot; /&gt;
                    &lt;conditions logicalGrouping=&quot;MatchAll&quot;&gt;
                        &lt;add input=&quot;{REQUEST_FILENAME}&quot; matchType=&quot;IsFile&quot; negate=&quot;true&quot; /&gt;
                        &lt;add input=&quot;{REQUEST_FILENAME}&quot; matchType=&quot;IsDirectory&quot; negate=&quot;true&quot; /&gt;
                    &lt;/conditions&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;index.php&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;chinese tag&quot; stopProcessing=&quot;true&quot;&gt;
                    &lt;match url=&quot;/tag/(.*)&quot; /&gt;
                    &lt;conditions logicalGrouping=&quot;MatchAll&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;/index\.php\?tag={R:1}&quot; /&gt;
                &lt;/rule&gt;
	   &lt;/rules&gt;
	&lt;/rewrite&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/07/13/wordpress-rewrite-for-iis7/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>shopex 4.8 for iis 7 伪静态</title>
		<link>http://www.weijingtai.com/2009/06/22/shopex-48-for-iis-7/</link>
		<comments>http://www.weijingtai.com/2009/06/22/shopex-48-for-iis-7/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 07:39:55 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[IIS7-rewrite]]></category>
		<category><![CDATA[shopex]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=102</guid>
		<description><![CDATA[将下列代码加入到web目录下的web.config文件的<system.webServer>之后即可。]]></description>
			<content:encoded><![CDATA[<p>shopex 4.84 用在iis 7 <a href="http://www.weijingtai.com/2009/05/18/iis7-url-rewrite-module/">url rewrite module</a> 下的规则文件</p>
<p>将下列代码加入到web目录下的web.config文件的&lt;system.webServer&gt;之后即可。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">        &lt;rewrite&gt;
            &lt;rules&gt;
                &lt;rule name=&quot;disableDownloadThemeHtml&quot;&gt;
                    &lt;match url=&quot;^themes/.*\.(html|xml)$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;CustomResponse&quot; url=&quot;/&quot; statusCode=&quot;403&quot; statusReason=&quot;Forbidden&quot; statusDescription=&quot;Forbidden&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;urlRewrite&quot;&gt;
                    &lt;match url=&quot;^(.*)$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;conditions logicalGrouping=&quot;MatchAll&quot;&gt;
                        &lt;add input=&quot;{REQUEST_FILENAME}&quot; pattern=&quot;\.(html|xml|json|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|cgi|shtml|shtm|phtm)$&quot; ignoreCase=&quot;false&quot; /&gt;
                        &lt;add input=&quot;{REQUEST_FILENAME}&quot; matchType=&quot;IsFile&quot; negate=&quot;true&quot; pattern=&quot;&quot; ignoreCase=&quot;false&quot; /&gt;
                        &lt;add input=&quot;{REQUEST_FILENAME}&quot; matchType=&quot;IsDirectory&quot; negate=&quot;true&quot; pattern=&quot;&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;/conditions&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;index.php?{R:1}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
            &lt;/rules&gt;
        &lt;/rewrite&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/06/22/shopex-48-for-iis-7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>uchome独立使用的伪静态规则</title>
		<link>http://www.weijingtai.com/2009/05/29/uchome-rewrite/</link>
		<comments>http://www.weijingtai.com/2009/05/29/uchome-rewrite/#comments</comments>
		<pubDate>Fri, 29 May 2009 07:04:32 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[discuz]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[uchome]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=100</guid>
		<description><![CDATA[最近有朋友在空间主目录下只装了uchome,问到要如何设置伪静态，其它在之前发过的uchome和dz共用的规则文件，稍改动一下就可以使用，不会改的直接下载下面这个规则文件使用吧，如果你的uchome不是安装在子目录的话。]]></description>
			<content:encoded><![CDATA[<p>最近有朋友在空间主目录下只装了uchome,问到要如何设置伪静态，其它在之前发过的<a href="http://www.weijingtai.com/2009/04/16/uchome-discuz/">uchome和dz共用的规则</a>文件，稍改动一下就可以使用，不会改的直接下载下面这个规则文件使用吧，如果你的uchome不是安装在子目录的话。</p>
<a class="downloadlink dlimg" href="http://www.weijingtai.com/wp-content/plugins/download-monitor/download.php?id=10" title="Version 1.5 downloaded 945 times" ><img src="http://www.weijingtai.com/wp-content/uploads/2009/04/download.png" alt="Download uchome Version 1.5" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/05/29/uchome-rewrite/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>wordpress 2.8将内建IIS 7 URL Rewrite Module支持</title>
		<link>http://www.weijingtai.com/2009/05/22/wordpress-iis7-url-rewrite-module/</link>
		<comments>http://www.weijingtai.com/2009/05/22/wordpress-iis7-url-rewrite-module/#comments</comments>
		<pubDate>Fri, 22 May 2009 18:39:12 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[IIS7-rewrite]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[wordpress2.8]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=93</guid>
		<description><![CDATA[最近几天正在测试IIS7  URL Rewrite Module 的一些伪静态规则，从RuslanY的blog上得知，wordpress2.8将内建对IIS7 URL Rewrite Module的支持，在wp 2.8的后台设置=》固定链接中，选择好要使用的固定链接形式以后点击保存，将自动显示出一段用于IIS7  URL Rewrite Module 的规则，复制这段规则到网站目录下的web.config文件中，即可实现wordprss的固定链接。]]></description>
			<content:encoded><![CDATA[<p>最近几天正在测试IIS7  URL Rewrite Module 的一些伪静态规则，从<a href="http://ruslany.net/" target="_blank">RuslanY</a>的blog上得知，wordpress2.8将内建对IIS7 URL Rewrite Module的支持，检测到环境包含IIS7 URL Rewrite Module1.1以后，在wp 2.8的后台设置=》固定链接中，选择好要使用的固定链接形式以后点击保存，将自动将相应的伪静态规则添加到web.config文件中，即可实现wordprss的固定链接。</p>
<p>如图所示 <br />
<span id="more-93"></span></p>
<p><a href="http://www.weijingtai.com/wp-content/uploads/2009/05/e340_wp-permalinks-patch.png"><img src="http://www.weijingtai.com/wp-content/uploads/2009/05/e340_wp-permalinks-patch.png" alt="" width="585" height="505" /></a></p>
<p><a href="http://www.weijingtai.com/wp-content/uploads/2009/05/6db7_wp-permalinks-patch1.png"><img src="http://www.weijingtai.com/wp-content/uploads/2009/05/9823_wp-permalinks-patch1-500x446.png" alt="" width="585" height="465" /></a></p>
<p>从图中可以看出这段规则代码和现在IIS7官方所出示的wordpress 2.7所用的代码相同，2.8只是将其内置在后台提示</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/05/22/wordpress-iis7-url-rewrite-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ECshop 2.6.2 伪静态规则</title>
		<link>http://www.weijingtai.com/2009/05/17/ecshop-rewrite/</link>
		<comments>http://www.weijingtai.com/2009/05/17/ecshop-rewrite/#comments</comments>
		<pubDate>Sun, 17 May 2009 12:49:09 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[shopex]]></category>
		<category><![CDATA[ecshop]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=81</guid>
		<description><![CDATA[ECSHOP 通用电子商务平台
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
ECSHOP是一款开源免费的通用电子商务平台构建软件，使用她您可以非常方便的开一个网上商店，在网上开展自己的生意。
将下面压缩包里的文件下载解压以后，上传到网站根目录，IIS主机使用httpd.ini文件 ,apache主机使用.htaccess文件
在后台设置开户 伪静态 功能：在后台 商店设置 &#62; 基本设置  &#62;  URL重写 &#62; 选上 简单重写
设置好后清缓存，查看网店； 即可生效了。非常简单；
 
]]></description>
			<content:encoded><![CDATA[<p>ECSHOP 通用电子商务平台</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>ECSHOP是一款开源免费的通用电子商务平台构建软件，使用她您可以非常方便的开一个网上商店，在网上开展自己的生意。</p>
<p><span style="color: #ff0000;">将下面压缩包里的文件下载解压以后，上传到网站根目录，IIS主机使用httpd.ini文件 ,apache主机使用.htaccess文件</span></p>
<p><span style="color: #ff0000;">在<span class="t_tag" onclick="function onclick() { function onclick() { function onclick() { function onclick() { tagshow(event) } } } }">后台</span>设置开户 伪静态 <span class="t_tag" onclick="function onclick() { function onclick() { function onclick() { function onclick() { tagshow(event) } } } }">功能：<span style="color: #006400;">在后台 <span class="t_tag" onclick="function onclick() { function onclick() { function onclick() { function onclick() { tagshow(event) } } } }">商店</span>设置 &gt; 基本设置  &gt;  <span class="t_tag" onclick="function onclick() { function onclick() { function onclick() { function onclick() { tagshow(event) } } } }">URL</span><span class="t_tag" onclick="function onclick() { function onclick() { function onclick() { function onclick() { tagshow(event) } } } }">重写</span> &gt; 选上 简单重写</span></p>
<p></span></span>设置好后清缓存，查看网店； 即可生效了。非常简单；</p>
<p><span id="more-81"></span> </p>
<a class="downloadlink dlimg" href="http://www.weijingtai.com/wp-content/plugins/download-monitor/download.php?id=8" title="Version 2.6.2 downloaded 522 times" ><img src="http://www.weijingtai.com/wp-content/uploads/2009/04/download.png" alt="Download ECShop Version 2.6.2" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/05/17/ecshop-rewrite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>shopex 4.84伪静态（以及IIS下解决办法）</title>
		<link>http://www.weijingtai.com/2009/04/16/shopex-484-iis/</link>
		<comments>http://www.weijingtai.com/2009/04/16/shopex-484-iis/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:23:07 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[shopex]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=71</guid>
		<description><![CDATA[Apache 下配置方法 进入后台 =>营销推广=>SEO设置=>商品页面启用伪静态  IIS下的配置方法：首先将压缩包中的ctl.tools.php文件替换到\core\admin\controller\system\下同名文件

]]></description>
			<content:encoded><![CDATA[<p><strong>Apache 下配置方法</strong></p>
<p>进入后台 =&gt;营销推广=&gt;SEO设置=&gt;商品页面启用伪静态</p>
<p><a href="http://www.weijingtai.com/wp-content/uploads/2009/04/shopex484.jpg"><img class="alignnone size-full wp-image-72" title="shopex484" src="http://www.weijingtai.com/wp-content/uploads/2009/04/shopex484.jpg" alt="shopex484" width="559" height="404" /></a></p>
<p>下载压缩包，将其中的.htaccess文件放到网站根目录即可。</p>
<p><span id="more-71"></span></p>
<p><strong>IIS下的配置方法：</strong></p>
<p>首先将压缩包中的ctl.tools.php文件替换到\core\admin\controller\system\下同名文件</p>
<p> 然后进入后台 =&gt;营销推广=&gt;SEO设置=&gt;商品页面启用伪静态</p>
<p><a href="http://www.weijingtai.com/wp-content/uploads/2009/04/shopex484.jpg"><img class="alignnone size-full wp-image-72" title="shopex484" src="http://www.weijingtai.com/wp-content/uploads/2009/04/shopex484.jpg" alt="shopex484" width="563" height="354" /></a></p>
<p>iis下需要isapi_rewrite 第三版,老版本的rewrite不支持RewriteCond语法。<br />
下载地址 <a href="http://www.helicontech.com/download-isapi_rewrite.htm" target="_bank"></a><a href="http://www.helicontech.com/download-isapi_rewrite.htm" target="_blank"><span style="color: #2b76b0;">http://www.helicontech.com/download-isapi_rewrite.htm</span></a> 下载那个<strong>ISAPI_Rewrite Lite for Windows NT4/2000/XP/2003 (Freeware!)</strong>即可，免费软件! 也可以下载本站<a title="链接到ISAPI Rewrite 3 lite 绿色版下载" rel="bookmark" href="http://www.weijingtai.com/2009/04/08/isapi-rewrite-3-lite/">ISAPI Rewrite 3 lite 绿色版下载</a> 进行安装。具体安装教程可在本站查找。</p>
<p>安装后进入isapi-rewirte的安装目录，将压缩包中的httpd.conf复制进去即可。<br />
      <a class="downloadlink dlimg" href="http://www.weijingtai.com/wp-content/plugins/download-monitor/download.php?id=1" title="Version 4.84 downloaded 825 times" ><img src="http://www.weijingtai.com/wp-content/uploads/2009/04/download.png" alt="Download shopex 4.84伪静态 Version 4.84" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/04/16/shopex-484-iis/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

