emlog怎么设置伪静态?emlog 伪静态规则
3个回答
展开全部
1、后台设置emlog伪静态规则右上方设置-SEO设置-选择文件形式,如果可以那恭喜,如果打开都404了,那就创建新的规则文件吧。
2、创建emlog伪静态规则文件
后台设置打开错误说明空间不支持.htaccess解析,而是支持httpd.ini 文件的解析。复制下面代码到txt,然后重命名为httpd.ini上传到根目录即可,在DZ伪静态时也是同样问题。下面给出的是最完整的的规则,官方关于此问题详细贴:http://bbs.emlog.net/thread-12483-1-1.html
[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]
3、用emlog伪静态插件
插件地址及说明:http://www.emlog.net/plugin/134。
Storm代理
2023-07-25 广告
2023-07-25 广告
StormProxies是一家提供动态代理服务器服务的企业,旨在帮助用户更好地管理网络访问和安全。以下是一些关于StormProxies的IP动态代理服务的特点:1. 高匿名性:StormProxies的动态代理服务器具有高匿名性,可以有效...
点击进入详情页
本回答由Storm代理提供
展开全部
emlog的伪静态设置不是很麻烦,如果你的空间采用的是apache空间并支持.htaccess伪静态文件的话,只需要在emlog后台里seo设置里设置下自动生成伪静态的;如果你的空间是win主机的那就需要手多些伪静态了,iis6的伪静态如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^(.*)/(post|record|sort|author|page)/([0-9]+)$ $1/index.php\?$2=$3
RewriteRule ^(.*)/tag/(.+)$ $1/index.php\?tag=$2
RewriteRule ^(.*)/(post|record|sort|author|page)-([0-9]+)\.html$ $1/index.php\?$2=$3
RewriteRule ^(.*)/tag-(.+)\.html$ $1/index.php\?tag=$2
如果是iis7那你就需要到emlog论坛里去搜索了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
装好了才发现,设置伪静态后,好像链接打不开,乐兮在网上搜索了下方法,千万篇网页里就找到一个能用的,下面把方法写给大家,希望能帮助你们。
首先,你要弄清楚你的主机空间是windows系统呢,还是unix系统。
因为国内大多数空间商都用的是win主机,所以咱们就着重说这个吧,把下面复制下来保存在记事本里面,然后把名字改成httpd.ini。传到空间根目录试试,一般来说,都能直接访问了,如果还不行,说明你没有权限,那只好联系你的空间商了。
伪静态代码:(保存文件名字为httpd.ini,传到网站根目录)
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^(.*)/(post|record|sort|author|page)/([0-9]+)$ $1/index.php\?$2=$3
RewriteRule ^(.*)/tag/(.+)$ $1/index.php\?tag=$2
RewriteRule ^(.*)/(post|record|sort|author|page)-([0-9]+)\.html$ $1/index.php\?$2=$3
RewriteRule ^(.*)/tag-(.+)\.html$ $1/index.php\?tag=$2
当然你有自己的服务器的话,可以试试下面的方法:
把下面的附件下载下去,然后解压到任意盘符下或目录下。给你的网站目录分配权限
操作:选择目录,右键 属性 安全 添加 IIS_WPG,并给予相应权限。打开IIS,选择你的站点。
操作:右键 属性 ISPAI筛选器 添加,找到刚才的放置的地方,选择 Rewrite.dll ,名称随意填写 最后确定。
最后重启IIS
,然后到emlog后台打开伪静态
,一般情况下就可以了。
首先,你要弄清楚你的主机空间是windows系统呢,还是unix系统。
因为国内大多数空间商都用的是win主机,所以咱们就着重说这个吧,把下面复制下来保存在记事本里面,然后把名字改成httpd.ini。传到空间根目录试试,一般来说,都能直接访问了,如果还不行,说明你没有权限,那只好联系你的空间商了。
伪静态代码:(保存文件名字为httpd.ini,传到网站根目录)
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^(.*)/(post|record|sort|author|page)/([0-9]+)$ $1/index.php\?$2=$3
RewriteRule ^(.*)/tag/(.+)$ $1/index.php\?tag=$2
RewriteRule ^(.*)/(post|record|sort|author|page)-([0-9]+)\.html$ $1/index.php\?$2=$3
RewriteRule ^(.*)/tag-(.+)\.html$ $1/index.php\?tag=$2
当然你有自己的服务器的话,可以试试下面的方法:
把下面的附件下载下去,然后解压到任意盘符下或目录下。给你的网站目录分配权限
操作:选择目录,右键 属性 安全 添加 IIS_WPG,并给予相应权限。打开IIS,选择你的站点。
操作:右键 属性 ISPAI筛选器 添加,找到刚才的放置的地方,选择 Rewrite.dll ,名称随意填写 最后确定。
最后重启IIS
,然后到emlog后台打开伪静态
,一般情况下就可以了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询