由于我住的地方网络比较卡,大的引擎比较卡,打开慢,果断选择emlog这款cms建了个个人博客,那么刚用问题就来了,什么问题呢?建站的人都知道,网站一般都要做静态或者伪静态的,emlog不支持静态,那就只能伪静态了,后台有设置,果断设置,进入管理后台,点击右上角设置->seo设置,我的设置截图如下:
没错,这么简单肯定是没有错,但是网页却出了问题,不废话了,贴图;
由于我还没设置404页面,所以提示错误,您们的可能就是404页面,这是怎么回事,说明我得服务器是windows下的IIS服务器,不支持.htaccess解析,支持的是httpd.ini或httpd.conf 的文件解析,好了,这里我就知道要写伪静态规则了,我新建了一个文本文件,文件名保存为httpd.ini或httpd.conf,加上伪静态规则,保存,上传到网站根目录,下边是我整理的伪静态规则:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /photos/(.*) /photos/$1 [L]
RewriteRule /rss.php(.*) /rss.php$1 [L]
RewriteRule /tb.php(.*) /tb.php$1 [L]
RewriteRule /favicon.ico /favicon.ico [L]
RewriteRule /xmlrpc.php(.*) /xmlrpc.php$1 [L]
RewriteRule /wlwmanifest.xml /wlwmanifest.xml [L]
RewriteRule /(t|m)$ /$1/ [R]
RewriteRule /(admin|content|include|t|m)/(.*) /$1/$2 [L]
RewriteRule /install.php(.*) /install.php$1 [L]
RewriteRule /emlog_toolkit.php(.*) /emlog_toolkit.php$1 [L]
RewriteRule /up(\d.\d.\d)to(\d.\d.\d).php(.*) /up$1to$2.php$3 [L]
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]
文件直接下载地址:http://www.amuker.com/zyfx/4.html
然后我刷新了出错页面,结果你猜如何,依然出错,那到底怎么回事呢?
我看了下服务器,最后知道了,原来他支持的伪静态文件是web.config文件,好了,废话不多说,直接开始写规则吧:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="amuker" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
文件下载地址:http://www.amuker.com/zyfx/5.html
操作和上边一样,直接刷新出错页,不要问我效果,直接上图不解释:
哈哈,搞定!本文小慕原创,转载请注明出处!
---
转载请注明本文标题和链接:《emlog伪静态设置-我的建站第一天》