iis 伪静态 xp系统 asp网站

iis 伪静态 xp系统 asp网站,第1张

最近陆续有很多站长过来询问伪静态的问题,现就分享下目前网上流行的各种程序在iis下的规则和设置方法:

shopex4.8

下载3.0的免费Rewrite组件

http://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0056_Lite.msi

按照默认路径安装后,打开C:\Program

Files\Helicon\ISAPI_Rewrite3\httpd.conf

加入以下规则:

#

Helicon

ISAPI_Rewrite

configuration

file

#

Version

3.1.0.56

RewriteBase

/

RewriteCond

%{REQUEST_FILENAME}

\.(html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|cgi|shtml|shtm|phtm|xml)$

RewriteCond

%{REQUEST_FILENAME}

!-f

RewriteCond

%{REQUEST_FILENAME}

!-d

RewriteRule

^(.*)$

index.php?$1

[L]

[ISAPI_Rewrite]

#

3600

=

1

hour

CacheClockRate

3600

RepeatLimit

32

#

Protect

httpd.ini

and

httpd.parse.errors

files

#

from

accessing

through

HTTP

RewriteRule

^(.*)/archiver/((fid|tid)-[0-9]+\.html)\?*(.*)$

$1/archiver/index\.php\?$2&$4

RewriteRule

^(.*)/forum-([0-9]+)-([0-9]+)\.html\?*(.*)$

$1/forumdisplay\.php\?fid=$2&page=$3&$4

RewriteRule

^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$

$1/viewthread\.php\?tid=$2&extra=page\%3D$4&page=$3&$4

RewriteRule

^(.*)/space-(username|uid)-(.+)\.html\?*(.*)$

$1/space\.php\?$2=$3&$4

RewriteRule

^(.*)/tag-(.+)\.html\?*(.*)$

$1/tag\.php\?name=$2&$3

下面就需要配置iis为shopex4.8加载组件了:

打开iis,右键你的站点属性--ISAPI

筛选器--添加--筛选器名称是ISAPI_Rewrite3

--可执行文件就是ISAPI_Rewrite.dll的路径,比如C:\Program

Files\Helicon\ISAPI_Rewrite3\ISAPI_Rewrite.dll

最后重启iis

当然你可以把ISAPI_Rewrite3目录放入站点根目录下,但记得要给一个users和"network

service"的读权限。

注意:有些服务器或者vps有做权限的,安装后httpd.conf可能只有everyone和system的权限,如果修改不了文件就添加一个administrator的权限。

shopex4.7

免费的rewrite2.0组件下载地址

http://www.isapirewrite.com/download/isapi_rwl_x86_0072.msi

安装后添加如下规则

规则如下:

[ISAPI_Rewrite]

#

3600

=

1

hour

CacheClockRate

3600

RepeatLimit

32

#首页

RewriteRule

/index.html

/index.php

RewriteRule

/default.html

/index.php

#商店公告

RewriteRule

/bulletin.html

/index.php\?gOo=article_list.dwt&acat=1

RewriteRule

/bulletin_([0-9]+).html

/index.php\?gOo=article_list.dwt&acat=1&p=$1

#商品分类

RewriteRule

/catalog.html

/index.php\?gOo=goods_category.dwt

#全部商品

RewriteRule

/list.html

/index.php\?gOo=goods_search_list.dwt

RewriteRule

/list_([0-9]+).html

/index.php\?gOo=goods_search_list.dwt&p=$1

#会员中心

RewriteRule

/member.html

/index.php\?gOo=member_home.dwt

#帮助中心与常见问题

RewriteRule

/faq.html

/index.php\?gOo=help.dwt&acat=2

RewriteRule

/faq_([0-9]+).html

/index.php\?gOo=help.dwt&acat=2&p=$1

#安全交易

RewriteRule

/safe.html

/index.php\?gOo=help_safe.dwt

#购买流程

RewriteRule

/howtobuy.html

/index.php\?gOo=help_buystep.dwt

#如何付款

RewriteRule

/howtopay.html

/index.php\?gOo=help_send.dwt

#联系我们

RewriteRule

/contactus.html

/index.php\?gOo=help_contact.dwt

#关于我们

RewriteRule

/aboutus.html

/index.php\?gOo=help_copyright.dwt

#顾客留言

RewriteRule

/feedback.html

/index.php\?gOo=shopbbs.dwt

#友情链接

RewriteRule

/friendlink.html

/index.php\?gOo=linkmore.dwt

#用户注册

RewriteRule

/register.html

/index.php\?gOo=register_1.dwt

#忘记密码

RewriteRule

/lostpass.html

/index.php\?gOo=forget.dwt

#商品详细页

RewriteRule

/product/([0-9]+).html

/index.php\?gOo=goods_details.dwt&goodsid=$1

RewriteRule

/product_([0-9]+).html

/index.php\?gOo=goods_details.dwt&goodsid=$1

RewriteRule

/([0-9]+)_([^.]*).html

/index.php\?gOo=goods_details.dwt&goodsid=$1

#新闻详细页

RewriteRule

/article_([0-9]+).html

/index.php\?gOo=help_details.dwt&articleid=$1

RewriteRule

/message_([0-9]+).html

/index.php\?gOo=article_details.dwt&articleid=$1

#分类详细列表

RewriteRule

/catalog_([0-9]+).html

/index.php\?gOo=goods_search_list.dwt&gcat=$1

RewriteRule

/catalog_([0-9]+)_([0-9]+).html

/index.php\?gOo=goods_search_list.dwt&gcat=$1&p=$2

#收藏商品

RewriteRule

/addtofavorites_([0-9]+).html

/index.php\?gOo=addmembergoods.do&goodsid=$1

#首页上的最新,推荐,特价商品

RewriteRule

/list_([a-zA-Z]+).html

/index.php\?gOo=goods_search_list.dwt&gtype=$1

RewriteRule

/list_([a-zA-Z]+)_([0-9]+).html

/index.php\?gOo=goods_search_list.dwt&gtype=$1&p=$2

下面就需要配置iis为shopex4.7加载组件了,方法类似shopex4.8:

打开iis,右键你的站点属性--ISAPI

筛选器--添加--筛选器名称是Rewrite

--可执行文件就是Rewrite.dll的路径,比如E:\home\LocalUser\rewrite\Rewrite.dll

最后重启iis

rewrite.dll以及规则可以放入任何一个目录,但记得要给该目录一个users的读权限。

以上就是shopex4.8和shopex4.7的规则以及配置方法。如果iis内有其它程序比如discuz、phpwind之类的,就可能会相互有影响,那么就打开iis,

右键网站属性--ISAPI

筛选器--删除isapi_rewrite这项,因为这里是对整个iis进行设置的,会造成其它程序的冲突。

注意isapi_rewrite3.0和isapi_rewrite2.0不能混用。

因为篇幅问题,现在再把shopex4.7/4.8、discuz6/NT2.5、ecshop、dvbbs、phpwind、wordpress、Discuz6+ecshop等伪静态规则和组件打包进行下载。

以上设置都是针对租用了独立服务器和vps的,在使用虚拟主机的就不用看了,因为作为服务商是应该做好了的,但目前还没有出现对所有流行程序都支持的吧。

wordpress固定链接设置参数: 参数不多说,很死的东西,按照WordPress官方文档列表如下:

1. %year% 基于文章发布年份,比如2007;

2. %monthnum% 基于文章发布月份,比如05;

3. %day% 基于文章发布当日,比如28;

4. %hour% 基于文章发布小时数,比如15;

5. %minute% 基于文章发布分钟数,比如43

6. %second% 基于文章发布秒数,比如33

7. %postname% 基于文章的postname,其值为撰写时指定的缩略名,不指定缩略名时是文章标题;

8. %post_id% 基于文章post_id,比如423;

9. %category% 基于文章分类,子分类会处理成“分类/子分类”这种形式;

10. %author% 基于文章作者名。

将上述参数进行组合,即可得到wordpress的固定链接形式。网上常见的几种设置方法:

/%year%/%monthnum%/%day%/%postname%/

/%year%/%monthnum%/%postname%/

/%year%/%monthnum%/%day%/%postname%.html

/%year%/%monthnum%/%postname%.html

/%category%/%postname%.html

/%category%/%post_id%

/%postname%.html

/%post_id%.html 我们一般使用这个方式比较好。

wp永久链接设置技巧:

一、不要让日期出现在wordpress固定链接里面

这基于两个方面的考虑。一是如果数字出现在固定链接里面,等于提醒搜索引擎,这是很旧的内容了,没必要再爬一遍了。另外一个原因是,假如你要修改文章的日期重新发布的话,链接地址就变了,也就是意味着你的反向链接,PR 等等都没有了。

二、不要让分类的链接出现在固定链接里面

这一点是很多人都会忽略的地方。让分类出现在固定链接里面有两个缺陷:一是一篇文章如果选择了多个分类的话,则会出现多个链接地址,这很容易造成因为重复内容而被搜索引擎惩罚;二是有可能会造成关键词堆砌而被搜索引擎惩罚。

三、链接不要过深

这一点经常看到。很多wordpress 用户的固定链接是年/月/日/分类名/文章名。这种过于深的固定链接对搜索引擎是非常不友好的。

四、不要让中文字符出现在固定链接里面

虽然现在的搜索引擎已经能识别URL地址里面的中文字符,但无论是从美观上,还是从wordpress 优化的角度来看,都是非常差的。

Win服务器下设置WordPress固定链接伪静态

只要主机支持自定义404页面,无需安装插件,就能让Win主机像Linux 那样,方便使用WordPress的固定链接为静态化地址格式。

设置固定链接(Permalink)伪静态步骤:

1. 将以上代码保存为 404.php,并上传至主机根目录。

2. 设置 404 自定义错误页为 404.php。

3.进入 WordPress 控制面板,设置(Options)- WordPress固定链接(Permalinks),选择固定链接格式。如果你觉得上面新建404页面太麻烦了!那我给你推荐一个插件吧!那就是 Permalinks Migration Plugin Permalinks Migration Plugin的主要原理是利用“301转向”来实现既不丢失原有的链接,同时又让读者和搜索引擎知道,你已经修改了固定链接的效果,让他们尽快更新链接。

也许自己好久没有写程序了,慢慢的什么都给退化了呢,我也有看见wordpress写有.htaccess这个文件,为什么不行呢?后来上网查了一下,原来我未开启伪静态的模块LoadModule rewrite_module,于是在 apache的配置文件httpd.conf开启了LoadModule rewrite_module,然后再设置固定链接的形式为/%post_id%.html,就可以打开了,自然高兴了,我本地的环境是win+php+apache的;当然为我们提供的服务商一般用的iis服务器的,解决办法是

首先你先问你空间商,你购买的空间支持不支持伪静态,一般购买的付费空间/虚拟主机都是支持的。如果支持的话,就创建一个httpd.ini文件,把下面代码保存到该文件中,上传到网站的根目录就可以了。然后,之后进入WP后台修改固定链接,比如修改为:%/tegory%/%post_id%.html,很简单吧。

复制代码

代码如下:

[ISAPI_Rewrite]

# Defend your computer from some worm attacks

#RewriteRule .*(?:global.asa|default.ida|root.exe|..).* . [F,I,O]

# 3600 = 1 hour</p><p>CacheClockRate 3600

RepeatLimit 32</p><p># Protect httpd.ini and httpd.parse.errors files

# from accessing through HTTP

# Rules to ensure that normal content gets through</p><p>RewriteRule /tag/(.*) /index.php?tag=$1

RewriteRule /software-files/(.*) /software-files/$1 [L]

RewriteRule /images/(.*) /images/$1 [L]

RewriteRule /sitemap.xml /sitemap.xml [L]

RewriteRule /favicon.ico /favicon.ico [L]

# For file-based wordpress content (i.e. theme), admin, etc.

RewriteRule /wp-(.*) /wp-$1 [L]

# For normal wordpress content, via index.php

RewriteRule ^/$ /index.php [L]

RewriteRule /(.*) /index.php/$1 [L]

这个规则文件的写法是IIS6.0下最新的wordpress伪静态规则。一般win主机都是IIS6.0的web服务器 ,而不是Apache的,在IIS服务器下,像一些常见的wordpress博客、shopex网店系统等第三方知名第三方程序,伪静态的实现,自己只需要把网站的静态化规则文件命名为httpd.ini文件放在网站根目录就可以了,无须通过网站后台设置,那是在Linux系统下的Apache服务器下才那样设置。

下面这个方法也是从网上找来的,希望和大家一起分享学习了,有什么好的方法一起多多交流了!

如果没换模版之前一切正常,而换了模版之后出问题,那么就和伪静态规则无关了

可能是EX系统问题

如果可能,清除缓存,模版重新加载一次,或者模版恢复上次的备份一次。。。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/111145.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-11
下一篇2023-03-11

发表评论

登录后才能评论

评论列表(0条)

    保存