欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

.htaccess使浏览器打不开解决思路

程序员文章站 2022-04-26 17:18:47
...
.htaccess使浏览器打不开
一页面很正常,可是当我在根目录下放入.htaccess,该页面再也打不开了,
.htaccess的内容:
# Helicon ISAPI_Rewrite configuration file# Version 3.1.0.66
RewriteEngine On
RewriteRule ^index.html$ index.php
RewriteRule ^index_ok.html$ index_ok.php:
页面显示:


Internal Server Error


The server encountered an internal error or misconfiguration and was unableto complete your request.
Please contact the server administrator, [email protected] and inform them of thetime the error occurred, and anything you might have done that may have causedthe error.
More information about this error may be available in the server errorlog.

------解决方案--------------------
#有没有加这个?
RewriteEngine On
RewriteBase /
RewriteRule ^index.html$ index.php
RewriteRule ^index_ok.html$ index_ok.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
.htaccess使浏览器打不开解决思路

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • .htaccess使浏览器打不开解决思路
  • 专题推荐