<?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; discuz</title>
	<atom:link href="http://www.weijingtai.com/tag/discuz/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 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>discuz uchome IIS7 rewrite规则</title>
		<link>http://www.weijingtai.com/2010/03/17/discuz-uchome-iis7-rewrite/</link>
		<comments>http://www.weijingtai.com/2010/03/17/discuz-uchome-iis7-rewrite/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 12:51:09 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[IIS7-rewrite]]></category>
		<category><![CDATA[discuz]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[rewrite]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=112</guid>
		<description><![CDATA[discuz和uchome 在IIS7 默认rewrite模块下的伪静态规则]]></description>
			<content:encoded><![CDATA[<p>将以下内容添加到web.config文件中即可</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
19
20
21
22
23
24
25
26
27
28
29
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;configuration&gt;
&lt;system.webServer&gt;
&lt;rewrite&gt;
            &lt;rules&gt;
                &lt;rule name=&quot;Imported Rule 17&quot;&gt;
                    &lt;match url=&quot;^archiver/((fid|tid)-[\w\-]+\.html)$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;archiver/index.php?{R:1}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 18&quot;&gt;
                    &lt;match url=&quot;^forum-([0-9]+)-([0-9]+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;forumdisplay.php?fid={R:1}&amp;amp;page={R:2}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 19&quot;&gt;
                    &lt;match url=&quot;^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;viewthread.php?tid={R:1}&amp;amp;extra=page\%3D{R:3}&amp;amp;page={R:2}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 20&quot;&gt;
                    &lt;match url=&quot;^space-(username|uid)-(.+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;space.php?{R:1}={R:2}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 21&quot;&gt;
                    &lt;match url=&quot;^tag-(.+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;tag.php?name={R:1}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
            &lt;/rules&gt;
&lt;/rewrite&gt;
&lt;/system.webServer&gt;
&lt;/configuration&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2010/03/17/discuz-uchome-iis7-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>discuz7 for iis 7 URL Rewrite Module</title>
		<link>http://www.weijingtai.com/2009/05/26/discuz7-for-iis-7-rewrite/</link>
		<comments>http://www.weijingtai.com/2009/05/26/discuz7-for-iis-7-rewrite/#comments</comments>
		<pubDate>Tue, 26 May 2009 13:31:51 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[IIS7-rewrite]]></category>
		<category><![CDATA[discuz]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[rewrite]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=98</guid>
		<description><![CDATA[将下列代码加入到web目录下的web.config文件的<system.webServer>之后即可。]]></description>
			<content:encoded><![CDATA[<p>discuz 用在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
18
19
20
21
22
23
24
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">        &lt;rewrite&gt;
            &lt;rules&gt;
                &lt;rule name=&quot;Imported Rule 17&quot;&gt;
                    &lt;match url=&quot;^archiver/((fid|tid)-[\w\-]+\.html)$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;archiver/index.php?{R:1}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 18&quot;&gt;
                    &lt;match url=&quot;^forum-([0-9]+)-([0-9]+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;forumdisplay.php?fid={R:1}&amp;amp;page={R:2}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 19&quot;&gt;
                    &lt;match url=&quot;^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;viewthread.php?tid={R:1}&amp;amp;extra=page\%3D{R:3}&amp;amp;page={R:2}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 20&quot;&gt;
                    &lt;match url=&quot;^space-(username|uid)-(.+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;space.php?{R:1}={R:2}&quot; appendQueryString=&quot;false&quot; /&gt;
                &lt;/rule&gt;
                &lt;rule name=&quot;Imported Rule 21&quot;&gt;
                    &lt;match url=&quot;^tag-(.+)\.html$&quot; ignoreCase=&quot;false&quot; /&gt;
                    &lt;action type=&quot;Rewrite&quot; url=&quot;tag.php?name={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/05/26/discuz7-for-iis-7-rewrite/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>discuz 7.0 伪静态 设置及规则下载</title>
		<link>http://www.weijingtai.com/2009/04/09/discuz-70-rewrite-rule/</link>
		<comments>http://www.weijingtai.com/2009/04/09/discuz-70-rewrite-rule/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 14:45:08 +0000</pubDate>
		<dc:creator>衣不如新</dc:creator>
				<category><![CDATA[discuz]]></category>
		<category><![CDATA[7.0]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[isapi]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.weijingtai.com/?p=53</guid>
		<description><![CDATA[discuz 7.0 的伪静态规则 ，包括win主机常用httpd.ini和linux下常用的.htaccess规则文件]]></description>
			<content:encoded><![CDATA[<p>discuz 7.0 的伪静态规则 ，包括win主机常用httpd.ini和linux下常用的.htaccess规则文件</p>
<p>首先下载提供的伪静态规则放入网站根目录，然后进入discuz系统设置后台，按下图将url静态化的选项勾选，即可启用discuz伪静态</p>
<p><span id="more-53"></span></p>
<p><a href="http://www.weijingtai.com/wp-content/uploads/2009/04/discuzrewrite.png"><img class="alignnone size-full wp-image-56" title="discuzrewrite" src="http://www.weijingtai.com/wp-content/uploads/2009/04/discuzrewrite.png" alt="discuzrewrite" width="597" height="578" /></a></p>
<a class="downloadlink dlimg" href="http://www.weijingtai.com/wp-content/plugins/download-monitor/download.php?id=4" title="Version 7.0 downloaded 1146 times" ><img src="http://www.weijingtai.com/wp-content/uploads/2009/04/download.png" alt="Download discuz 7.0 伪静态规则 Version 7.0" /></a>
<h4 style="display: block;">Discuz! 7.0.0 更新日志</h4>
<div style="display: block;">
<ul>
<li>【全新】社区 UI 设计，开创性操作引导和页面布局，大幅度提升会员使用体验</li>
<li>【全新】风格模板体系，打造个性化论坛风格更容易，论坛展现效果更突出</li>
<li>【全新】论坛风格可视化编辑器，支持在线设计风格，可实时预览设计效果</li>
<li>【全新】论坛风格管理系统，风格安装、卸载一键完成，支持风格效果图</li>
<li>【内置】16 款精心设计的炫酷风格和 7 套模板，供各种类型的站点选用，个性十足</li>
<li>【全新】论坛任务系统，进一步增强社区会员的互动行为，可利用任务增强社区的粘性、增加活跃度</li>
<li>【内置】会员类、帖子类、红包类、推广类、头像类 5 种论坛任务，轻松设计各种论坛任务</li>
<li>【支持】任务衍生，每类任务可根据申请条件、完成条件、奖励内容衍生出无数种任务</li>
<li>【支持】自定义任务脚本，内置自定义任务的安装、升级、卸载、配置、条件判断、管理接口，任务拓展极为容易</li>
<li>【支持】系列化任务，每个任务之间可以设置关联性，形成类似 RPG 游戏类型任务，吸引会员持续参与</li>
<li>【支持】多种任务奖励模式，可奖励任意某种积分、道具或拥有高级权限的特殊组，完成任务后自动发送奖励通知</li>
<li>【支持】任务自动上线和下线以及周期性任务，管理员设定好以后，可安心其他管理，无需每日牵挂</li>
<li>【支持】会员任务提醒，当会员有未完成任务时随时提醒会员，并可随时查看任务执行的进度情况</li>
<li>【新增】注册、登录、发帖等常规操作的悬窗设计，减少用户页面切换行为和次数，增强论坛操作的易用性</li>
<li>【新增】注册、登录、发帖等常规操作的提示信息设计，管理员可设置每种操作的提示信息，并支持多条信息随机展示</li>
<li>【新增】注册 &#8211; 新手任务设置，当会员注册完毕，可以立即提醒进行某个任务，在完成任务后才能拥有正常权限</li>
<li>【新增】发帖 &#8211; 附件批量上传，会员可预先上传多个附件而后再发帖，在网络环境不好的情况下，提高发帖成功率</li>
<li>【新增】发帖 &#8211; Feed隐私设置，用户可选择是否在个人空间中公开自己的发帖或者回帖行为………………</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.weijingtai.com/2009/04/09/discuz-70-rewrite-rule/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

