网站首页可以正常打开,但是一点相关链接,就报错,代码是没有任何问题的,
主要原因是,伪静态页面造成的
错误代码如下:
Not Found
The requested URL /kaixi/html/nns/show_nns_w2_0_89.html was not found on this server在服务器上做了一下设置
1.通过php提供的phpinfo()函数查看环境配置,在apache2handler里面包括“mod_rewrite”,则表示已经支持
2.修改了apache的httpd.conf设置
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
改为
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>mod_rewrite功能激活了!怎么还是大不开伪静态页面请高手们,帮帮小弟
小弟在着谢过了