发新话题
打印

新手问:为什么有的网页上不显示后缀.php?

补充说明  
直接就是www.*****.com/index/  
这有两种可能  
1、设置默认文档,比如index.php  
     该文档在网站的index目录下  
     实际是www.*****.com/index/index.php  
2、使用了rewrite技术  
     实际执行www.*****.com/index.php  
按楼主的“默认为  index.php?  那么所有的后缀为.php  的都不显出来,是不是?”  
来看,想知道的是后者。所以要  
apache的httpd.conf中  
<FilesMatch  "^app_name$">  
       ForceType  application/x-httpd-php  
</FilesMatch>  

iis默认不支持rewrite,但可安装扩展

TOP

发新话题