php设置伪静态问题

WBOY
풀어 주다: 2016-06-23 13:17:54
원래의
1020명이 탐색했습니다.

在设置伪静态时一直不能成功(rewrite组件已经打开)httpd-vhosts.conf配置是
    DocumentRoot "E:/daima/htdocs/virtual"
    ServerName  www.lhb.com
    #Directory节点指定该目录下的文件,图片的访问权限
    #设置虚拟主机的错误页面,欢迎页面
    
    Order allow,deny
    Allow from all

#是否列出文件目录(None不显示Indexes显示目录)
Options Indexes
#设置错误页面
errorDocument 404 /error.html
#设置首页面
DirectoryIndex index.html
#AllowOverride All
#配置rewrite
RewriteEngine on
        RewriteRule aaa.html news.php
    


去掉RewriteEngine on
        RewriteRule aaa.html news.php错误页面,首页面均能正确显示,带入那2行代码,在浏览器输入www.lhb.com/aaa.html则报错:You don't have permission to access / on this server.


回复讨论(解决方案)

用的Apache?为什么不用.htaccess文件呢?
写apache配置文件里多麻烦,有改动还得重启服务。

用的Apache?为什么不用.htaccess文件呢?
写apache配置文件里多麻烦,有改动还得重启服务。


用.htaccess也不行啊
.htaccess代码:
Options  FollowSymLinks
RewriteEngine on
RewriteRule RewriteRule aaa.html news.php

httpd-vhosts.conf代码

    DocumentRoot "E:/daima/htdocs/virtual"
    ServerName  www.lhb.com
    #Directory节点指定该目录下的文件,图片的访问权限
    #设置虚拟主机的错误页面,欢迎页面
    
    Order allow,deny
    Allow from all

#是否列出文件目录(None不显示Indexes显示目录)
Options Indexes
#设置错误页面
errorDocument 404 /error.html
#设置首页面
DirectoryIndex index.html
AllowOverride All
#配置rewrite

    


首页面 错误页面能够访问 访问http://www.lhb.com/aaa.html就是aaa.html的内容也不能实现伪静态

<IfModule mod_rewrite.c>RewriteEngine OnRewriteRule ^aaa\.html news.php [NC]</IfModule>
로그인 후 복사
로그인 후 복사
로그인 후 복사

<IfModule mod_rewrite.c>RewriteEngine OnRewriteRule ^aaa\.html news.php [NC]</IfModule>
로그인 후 복사
로그인 후 복사
로그인 후 복사



<IfModule mod_rewrite.c>RewriteEngine OnRewriteRule ^aaa\.html news.php [NC]</IfModule>
로그인 후 복사
로그인 후 복사
로그인 후 복사


按照你这种设置,http://www.lhb.com/aaa.html也会报错:You don't have permission to access / on this server.

虽然不知道为啥,但把配置文件httpd-vhosts.conf里的Options None选项去掉就可以实现伪静态了

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿