Ecshop url重写 apache环境配置伪静态

ECSHOP v2.0 以上版本 URL Rewrite 使用说明

*******************************************************************************
* 一、Apache 服务器
*******************************************************************************

   1、首先您需要找到 Apache 安装目录,之后找到conf 目录下的 httpd.conf 文件。
   2、将下面的代码复制到 httpd.conf 文件中,注意将192.168.1.102和网址,替换你自己的。本地测试可用localhost替换

<Directory />
    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    allow from all
    Satisfy all
</Directory>

<VirtualHost 192.168.1.102>

        DocumentRoot "d:/wamp/www"
        ServerName www.******.com
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(.*)/index.html$                $1/index.php
    RewriteRule ^(.*)/category$                  $1/index.php                       [L]
    RewriteRule ^(.*)/feed-c([0-9]+).xml$        $1/feed.php?cat=$2                 [L]
    RewriteRule ^(.*)/feed-b([0-9]+).xml$        $1/feed.php?brand=$2               [L]
    RewriteRule ^(.*)/feed.xml$                  $1/feed.php
    RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$  $1/category.php?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6&page=$7&sort=$8&order=$9 [QSA,L]
    RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)\.html$                            $1/category.php?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6 [QSA,L]
    RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$                              $1/category.php?id=$2&brand=$3&page=$4&sort=$5&order=$6 [QSA,L]
    RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html$                                       $1/category.php?id=$2&brand=$3&page=$4 [QSA,L]
    RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)(.*)\.html$                                            $1/category.php?id=$2&brand=$3 [QSA,L]
    RewriteRule ^(.*)/category-([0-9]+)(.*)\.html$                               $1/category.php?id=$2 [QSA,L]
    RewriteRule ^(.*)/goods-([0-9]+)(.*)\.html$                                  $1/goods.php?id=$2 [QSA,L]
    RewriteRule ^(.*)/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$  $1/article_cat.php?id=$2&page=$3&sort=$4&order=$5 [QSA,L]
    RewriteRule ^(.*)/article_cat-([0-9]+)-([0-9]+)(.*)\.html$                   $1/article_cat.php?id=$2&page=$3 [QSA,L]
    RewriteRule ^(.*)/article_cat-([0-9]+)(.*)\.html$                            $1/article_cat.php?id=$2 [QSA,L]
    RewriteRule ^(.*)/article-([0-9]+)(.*)\.html$                                $1/article.php?id=$2 [QSA,L]
    RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html   $1/brand.php?id=$2&cat=$3&page=$4&sort=$5&order=$6 [QSA,L]
    RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html                $1/brand.php?id=$2&cat=$3&page=$4 [QSA,L]
    RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)(.*)\.html                         $1/brand.php?id=$2&cat=$3 [QSA,L]
    RewriteRule ^(.*)/brand-([0-9]+)(.*)\.html                                   $1/brand.php?id=$2 [QSA,L]
    RewriteRule ^(.*)/tag-(.*)\.html                                             $1/search.php?keywords=$2 [QSA,L]
    RewriteRule ^(.*)/snatch-([0-9]+)\.html$                                     $1/snatch.php?id=$2 [QSA,L]
    RewriteRule ^(.*)/group_buy-([0-9]+)\.html$                                  $1/group_buy.php?act=view&id=$2 [QSA,L]
    RewriteRule ^(.*)/auction-([0-9]+)\.html$                                    $1/auction.php?act=view&id=$2 [QSA,L]
    RewriteRule ^(.*)/exchange-id([0-9]+)(.*)\.html$                             $1/exchange\.php\?id=$2&act=view [QSA,L]
    RewriteRule ^(.*)/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/exchange\.php\?cat_id=$2&integral_min=$3&integral_max=$4&page=$5&sort=$6&order=$7 [QSA,L]
    RewriteRule ^(.*)/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$                         $1/exchange\.php\?cat_id=$2&page=$3&sort=$4&order=$5 [QSA,L]
    RewriteRule ^(.*)/exchange-([0-9]+)-([0-9]+)(.*)\.html$                                          $1/exchange\.php\?cat_id=$2&page=$3  [QSA,L]
    RewriteRule ^(.*)/exchange-([0-9]+)(.*)\.html$                                                   $1/exchange\.php\?cat_id=$2  [QSA,L]
    </IfModule>
</VirtualHost>

   3、在 httpd.conf 中搜索LoadModule rewrite_module,将该行前面的 # 号删除。
     如果您的 Apache 是1.3.x版本还需要查找 AddModule mod_rewrite.c,
     请将前面的#删除。
   4、保存 httpd.conf。
   5、将 ecshop 目录下的 htaccess.txt重命名为 .htaccess。
   6、重新启动 Apache。
   7、进入 ecshop管理中心->商店设置,将 URL 重写设置为启用。

   

*******************************************************************************
* 二、IIS 服务器
*******************************************************************************

   1、首先请进入以下网址 http://www.helicontech.com/download/,下载免费版的
   ISAPI_Rewrite组件:ISAPI_Rewrite Lite ( freeware )。如果您仅仅是测试用途使用
   这个就足够了,如果您是商业应用建议您购买完整版的 ISAPI_Rewrite Full。

   如果您无法访问以上网址,您也可以到我们的网站上下载:http://www.ecshop.com

   2、点击下载到本地的文件 isapi_rwl_x86_0064.msi (该文件名和您下载的版本有关)
   进行安装,安装成功之后进入安装目录(默认在
    C:/ProgramFiles/Helicon/ISAPI_Rewrite)找到httpd.ini文件,点击右键将文件只读
    属性去掉。然后进入:开始菜单->程序->Helicon->ISAPI_Rewrite->httpd.ini,
    点击打开httpd.ini 文件。

   3、复制下面的内容到httpd.ini文件

    4、保存httpd.ini,进入 ecshop 管理中心->商店设置,将 URL 重写设置为启用。


[ISAPI_Rewrite]

# 为了确保重写规则不影响服务器上的其他站点
# 请将下面的语句前的#号去掉,并将(?:www\.)?site1\.com改为商店所在域名

#RewriteCond %{HTTP:Host} (?:www\.)?site1\.com

RewriteRule^(.*)/index.html$               $1/index\.php         [I]
RewriteRule^(.*)/category$                 $1/index\.php         [I]
RewriteRule^(.*)/feed-c([0-9]+).xml$       $1/feed\.php\?cat=$2   [I]
RewriteRule^(.*)/feed-b([0-9]+).xml$       $1/feed\.php\?brand=$2  [I]
RewriteRule^(.*)/feed.xml$                 $1/feed\.php          [I]
RewriteRule^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/category\.php\?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6&page=$7&sort=$8&order=$9[I]
RewriteRule^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)\.html$                           $1/category\.php\?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6                         [I]
RewriteRule^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$                             $1/category\.php\?id=$2&brand=$3&page=$4&sort=$5&order=$6                                         [I]
RewriteRule^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html$                                      $1/category\.php\?id=$2&brand=$3&page=$4                                                          [I]
RewriteRule^(.*)/category-([0-9]+)-b([0-9]+)(.*)\.html$                                           $1/category\.php\?id=$2&brand=$3                                                                  [I]
RewriteRule^(.*)/category-([0-9]+)(.*)\.html$                              $1/category\.php\?id=$2                             [I]

RewriteRule^(.*)/category-([0-9]+)-b([0-9]+)\.html(.*)$                                           $1/category\.php\?$4&id=$2&brand=$3

RewriteRule^(.*)/goods-([0-9]+)(.*)\.html$                                 $1/goods\.php\?id=$2                                [I]
RewriteRule^(.*)/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/article_cat\.php\?id=$2&page=$3&sort=$4&order=$5 [I]
RewriteRule^(.*)/article_cat-([0-9]+)-([0-9]+)(.*)\.html$                  $1/article_cat\.php\?id=$2&page=$3                  [I]
RewriteRule^(.*)/article_cat-([0-9]+)(.*)\.html$                           $1/article_cat\.php\?id=$2                          [I]
RewriteRule^(.*)/article-([0-9]+)(.*)\.html$                               $1/article\.php\?id=$2                              [I]
RewriteRule^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html  $1/brand\.php\?id=$2&cat=$3&page=$4&sort=$5&order=$6[I]
RewriteRule^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html               $1/brand\.php\?id=$2&cat=$3&page=$4                 [I]

RewriteRule^(.*)/brand-([0-9]+)-c([0-9]+)\.html(.*)$                       $1/brand\.php\?$4&id=$2&cat=$3                 [I]

RewriteRule^(.*)/brand-([0-9]+)-c([0-9]+)(.*)\.html 

                       $1/brand\.php\?id=$2&cat=$3                         [I]
RewriteRule^(.*)/brand-([0-9]+)(.*)\.html                                  $1/brand\.php\?id=$2                                [I]
RewriteRule^(.*)/tag-(.*)\.html                                            $1/search\.php\?keywords=$2                         [I]
RewriteRule^(.*)/snatch-([0-9]+)\.html$                                    $1/snatch\.php\?id=$2                               [I]
RewriteRule^(.*)/group_buy-([0-9]+)\.html$                                 $1/group_buy\.php\?act=view&id=$2                   [I]
RewriteRule^(.*)/auction-([0-9]+)\.html$                                   $1/auction\.php\?act=view&id=$2                     [I]
RewriteRule^(.*)/exchange-id([0-9]+)(.*)\.html$                            $1/exchange\.php\?id=$2&act=view                    [I]
RewriteRule^(.*)/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$$1/exchange\.php\?cat_id=$2&integral_min=$3&integral_max=$4&page=$5&sort=$6&order=$7[I]
RewriteRule^(.*)/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$                        $1/exchange\.php\?cat_id=$2&page=$3&sort=$4&order=$5[I]
RewriteRule^(.*)/exchange-([0-9]+)-([0-9]+)(.*)\.html$                                         $1/exchange\.php\?cat_id=$2&page=$3 [I]
RewriteRule^(.*)/exchange-([0-9]+)(.*)\.html$                                                  $1/exchange\.php\?cat_id=$2  [I]

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值