<?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; WordPress</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/wordpress/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>Windows Server 2012 R2下WordPress IIS8.5伪静态规则设置</title>
		<link>https://www.osyunwei.com/archives/7286.html</link>
		<comments>https://www.osyunwei.com/archives/7286.html#comments</comments>
		<pubDate>Wed, 29 Jan 2014 08:41:02 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[IIS8.5]]></category>
		<category><![CDATA[Windows Server 2012 R2]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[伪静态]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7286</guid>
		<description><![CDATA[说明： 操作系统：Windows Server 2012 R2 Web服务器：IIS 8.5 网站程序：WordPress 网站根目录：C:\inetpub\wwwroot 网站域名：www.osyunwei.com 实现目的： 配置WordPress伪静态 具体操作： 一、确认IIS 8.5是否安装IIS URL Rewrite 打开：控制面板\系统和安全\管理工具\Internet Information Services (IIS)管理器 看到URL重写，说明已经安装了IS URL Rewrite，否则要先安装此插件。 IIS URL Rewrite下载：http://download.microsoft.com/download/4/E/7/4E7ECE9A-DF55-4F90-A354-B497072BDE0A/rewrite_x64_zh-CN.msi  双击默认安装即可 二、添加IIS 8.5伪静态规则文件 1、新建web.config文件，添加以下代码，保存 &#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;configuration&#62; &#60;system.webServer&#62; &#60;rewrite&#62; &#60;rules&#62; &#60;rule name="category"&#62; &#60;match url="category/?(.*)" /&#62; &#60;conditions logicalGrouping="MatchAll" trackAllCaptures="false" /&#62; &#60;action type="Rewrite" url="/index.php?category_name={R:1}" appendQueryString="false" logRewrittenUrl="false" /&#62; &#60;/rule&#62; &#60;rule [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7286.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7286.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 6.2编译安装Nginx1.2.0+MySQL5.5.25+PHP5.3.13+博客系统WordPress3.3.2</title>
		<link>https://www.osyunwei.com/archives/4199.html</link>
		<comments>https://www.osyunwei.com/archives/4199.html#comments</comments>
		<pubDate>Sat, 02 Jun 2012 04:28:56 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[lnmp]]></category>
		<category><![CDATA[MySQL5.5.25]]></category>
		<category><![CDATA[Nginx1.2.0]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=4199</guid>
		<description><![CDATA[说明： 操作系统：CentOS 6.2 32位 系统安装教程：CentOS 6.2安装(超级详细图解教程)： http://www.osyunwei.com/archives/1537.html 准备篇： 一、配置好IP、DNS 、网关，确保使用远程连接工具能够连接服务器        CentOS 设置IP地址、网关、DNS教程：http://www.osyunwei.com/archives/423.html 二、配置防火墙，开启80端口、3306端口 vi /etc/sysconfig/iptables   #编辑防火墙配置文件       -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT（允许80端口通过防火墙）       -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT（允许3306端口通过防火墙） 特别提示：很多网友把这两条规则添加到防火墙配置的最后一行，导致防火墙启动失败 正确的应该是添加到默认的22端口这条规则的下面，添加好之后防火墙规则如下所示： 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 ######################################################### # Firewall configuration [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/4199.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/4199.html/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>linux下WordPress apache伪静态规则设置</title>
		<link>https://www.osyunwei.com/archives/2034.html</link>
		<comments>https://www.osyunwei.com/archives/2034.html#comments</comments>
		<pubDate>Wed, 01 Feb 2012 15:24:20 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apache伪静态]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress apache]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=2034</guid>
		<description><![CDATA[1、首先确定Apache是否加载了Mod_rewrite 模块 方法: 检查 /etc/httpd/conf/httpd.conf 中是否存在以下两段代码 (具体路径可能会有所不同，但形式基本是一样的): (一)LoadModule rewrite_module libexec/mod_rewrite.so (二)AddModule mod_rewrite.c 2、检查Apache是否开启.htaccess支持 vi  /etc/httpd/conf/httpd.conf   AllowOverride All   #如果后面参数为None需要修改为All（大概在338行） 3、在文件/etc/httpd/conf/httpd.conf相应的主机目录配置中加入如下代码（此时须注意，如果网站是通过虚拟主机来定义，请务必加到虚拟主机配置中去，否则可能无法使用。） 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 例如： vi /etc/httpd/conf/httpd.conf  #编辑 &#60;Directory "/var/www/html"&#62;     Options Includes ExecCGI FollowSymLinks     AllowOverride All     Order allow,deny     Allow from all &#60;IfModule mod_rewrite.c&#62;     RewriteEngine On     RewriteBase /     RewriteRule ^index\.php$ - [L] [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/2034.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/2034.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
	</channel>
</rss>
