<?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; nginx伪静态</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/nginx%E4%BC%AA%E9%9D%99%E6%80%81/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Wed, 01 Apr 2026 08:27:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>linux下WordPress nginx伪静态规则设置</title>
		<link>https://www.osyunwei.com/archives/2023.html</link>
		<comments>https://www.osyunwei.com/archives/2023.html#comments</comments>
		<pubDate>Wed, 01 Feb 2012 08:35:40 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx伪静态]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress nginx]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=2023</guid>
		<description><![CDATA[     1、在相应nginx配置文件的server容器中添加下面的代码      系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 location / { if (-f $request_filename/index.html){                 rewrite (.*) $1/index.html break;         } if (-f $request_filename/index.php){                 rewrite (.*) $1/index.php;         } if (!-f $request_filename){                 rewrite (.*) /index.php;         } } 例如：        vi /usr/local/nginx/conf/nginx.conf    #编辑nginx配置文件 找到server_name localhost;在后面一行添加上面的代码 :wq!   #保存配置文件 service nginx restart    #重启nginx       系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/2023.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/2023.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux环境下phpwind论坛nginx伪静态规则设置</title>
		<link>https://www.osyunwei.com/archives/641.html</link>
		<comments>https://www.osyunwei.com/archives/641.html#comments</comments>
		<pubDate>Wed, 02 Nov 2011 12:31:49 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[nginx伪静态]]></category>
		<category><![CDATA[phpwind]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=641</guid>
		<description><![CDATA[在相应nginx配置文件的server中，添加如下代码 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 例如： vi /usr/local/nginx/conf/nginx.conf #编辑nginx配置文件 找到下面这行，在server_name localhost;后边一行添加上面的代码  系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 保存配置文件，最后重启nginx即可       service nginx restart 然后在phpwind论坛后台-全局-伪静态-静态目录部署-静态目录部署功能，选择开启。 静态目录：-htm- 静态目录扩展名设置：.html 点击提交即可 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/641.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Linux环境下phpwind论坛nginx伪静态规则设置<p><a rel="bookmark" href="https://www.osyunwei.com/archives/641.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/641.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux环境下Discuz! X2论坛nginx伪静态规则设置</title>
		<link>https://www.osyunwei.com/archives/596.html</link>
		<comments>https://www.osyunwei.com/archives/596.html#comments</comments>
		<pubDate>Wed, 02 Nov 2011 08:21:55 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[Discuz!]]></category>
		<category><![CDATA[nginx伪静态]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=596</guid>
		<description><![CDATA[在相应nginx配置文件的server中，添加如下代码 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 例如： vi /usr/local/nginx/conf/nginx.conf   #编辑nginx配置文件 找到下面这行，在server_name  localhost;后边一行添加上面的代码 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接    保存配置文件，最后重启nginx即可    service nginx restart      然后在Discuz! X2论坛后台-全局-SEO设置-URL静态化，选择你需要开启的页面，点击提交，即可实现静态化。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/596.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Linux环境下Discuz! X2论坛nginx伪静态规则设置<p><a rel="bookmark" href="https://www.osyunwei.com/archives/596.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/596.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
