ecshop怎么设置才支持伪静态啊,我漏掉了那些步骤,还是缺什么,还是WIN7不支持,我用的是wamp

我是按照下面步骤做的还是不起作用?index.php正常,用index.html就是404错误了1.检测Apache是否支持mod_rewrite通过php提供的phpi... 我是按照下面步骤做的还是不起作用?
index.php正常,用index.html就是404错误了

1.检测Apache是否支持mod_rewrite 通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。
如果没有开启“mod_rewrite”,则打开目录 您的apache安装目录“/apache/conf/” 下的 httpd.conf 文件,通过Ctrl+F查找到“LoadModule rewrite_module”,将前面的”#”号删除即可。
如果没有查找到,则到“LoadModule” 区域,在最后一行加入“LoadModule rewrite_module modules/mod_rewrite.so”(必选独占一行),然后重启apache服务器即可。

2.让apache服务器支持.htaccess
修改httpd.conf文件

Options FollowSymLinks
AllowOverride None
改为
Options FollowSymLinks
AllowOverride All

注意:除了要设置上面的地方以后,还得设置一下下面这个(网上很多资料都没有讲到这一块),否则你将会配制失败, 把 DocumentRoot 后面的参数改为你本地网站的目录 例如你网站的根目录为 D:/web/ 则得设置为 DocumentRoot "D:/web/" 也就是修改当前目录

此步骤设置好后也得重启apache服务器才能生效

3.建立.htaccess 文件
新建 htaccess.txt
用记事本 打开,点击文件–另存为,在文件名窗口输入”.htaccess”,然后点击保存。此文件得保存在网站的根目录

4.填写网站伪静态规则 (需要 了解 正则表达式)

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteRule index.html$ index.php
RewriteRule index-([1-9]+[0-9]*).html$ index.php?p=$1

</IfModule>
对了ECSHOP后台我也设置成简单伪静态了 简单重写 设置

那位大师告诉我下我的问题出在哪里
展开
 我来答
aleafo
2011-07-09 · TA获得超过512个赞
知道小有建树答主
回答量:196
采纳率:0%
帮助的人:237万
展开全部
伪静态需要 linux操作系统的服务器才能支持的。 如果你购买的服务器是Windows系统,那么你设置.htaccess文件是无效的。需要另外设置。
Windows系统有一个单独的设置规则,一般如果空间上安装了这个功能模块的话(咨询你的空间提供商),你只需要在网站的根目录放置 httpd.ini文件,并写好伪静态规则即可,当然这个规则的写法跟linux系统的.htaccess是不一样的,但是大同小异,你懂得正则表达式的话很容易转换过去的。
hao66625
2011-06-30 · 超过27用户采纳过TA的回答
知道答主
回答量:116
采纳率:0%
帮助的人:57.2万
展开全部
下面这个就是常见的问题ecshop伪静态设置方法:
1.服务器或虚拟主机要支持伪静态;
2.将.htaccess文件上传至网站的根目录;
3.在ecShop程序后台设置“伪静态”功能;
4.修改http.ini代码(下面灰色字体部分)。
[ISAPI_Rewrite]

# ECSHOP

RewriteRule /index.html /index.php

RewriteRule /default.html /index.php

RewriteRule /ecshop/feed.xml /ecshop/feed.php

#RewriteRule
/ecshop/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$
/ecshop/category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5

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

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

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

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

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

#RewriteRule /ecshop/category-([0-9]+)(.*)\.html$ /ecshop/category.php?id=$1

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

#RewriteRule /ecshop/goods-([0-9]+)(.*)\.html$ /ecshop/goods.php?id=$1

RewriteRule ^(.*)/goods-([0-9]+)(.*)\.html$ $1/goods\.php\?id=$2

#RewriteRule /ecshop/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$
/ecshop/article_cat.php?id=$1&page=$2&sort=$3&order=$4

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

#RewriteRule /ecshop/article_cat-([0-9]+)-([0-9]+)(.*)\.html$
/ecshop/article_cat.php?id=$1&page=$2

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

#RewriteRule /ecshop/article_cat-([0-9]+)(.*)\.html$
/ecshop/article_cat.php?id=$1

RewriteRule ^(.*)/article_cat-([0-9]+)(.*)\.html$ $1/article_cat\.php\?id=$2

#RewriteRule /ecshop/article-([0-9]+)(.*)\.html$ /ecshop/article.php?id=$1

RewriteRule ^(.*)/article-([0-9]+)(.*)\.html$ $1/article\.php\?id=$2

#RewriteRule /ecshop/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html
/ecshop/brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5

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

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

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

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

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

#RewriteRule /ecshop/brand-([0-9]+)(.*)\.html /ecshop/brand.php?id=$1

RewriteRule ^(.*)/brand-([0-9]+)(.*)\.html $1/brand\.php\?id=$2
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
扰龙寄翠Qg
2011-06-26 · 超过29用户采纳过TA的回答
知道答主
回答量:78
采纳率:0%
帮助的人:98.8万
展开全部
服务器操作系统是windows还是linux?

看你一会apache一会“D:/web”,弄晕了。

最后一步,可以先用ecshop默认的htaccess文件试试,你的静态规则写的有问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
caokui83
2011-06-24 · TA获得超过468个赞
知道小有建树答主
回答量:602
采纳率:0%
帮助的人:0
展开全部
具体是怎么个失败法,环境配置好了吗,数据库用户名密码、数据库名称都填写正确吗?如果都对了的话 那就是系统不兼容的问题了 它好像只支持linux、
追问
这么麻烦,数据库那些肯定没有问题了,现在是解决伪静态问题,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式