码迷,mamicode.com
首页 > 数据库 > 详细

.htaccess文件不能伪静态化的解决方法

时间:2014-08-28 11:12:29      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:des   http   os   io   strong   文件   问题   html   sp   

第一种:启用 rewrite 和 .htaccess 设置

rewrite设置:找到apache的配置文件httpd.conf文件,找到:#LoadModule rewrite_module modules/mod_rewrite.so去掉前面的#号。

改为:LoadModule rewrite_module modules/mod_rewrite.so

.htaccess设置

windows里面这样设置:AccessFileName htaccess

linux里面这样设置:AccessFileName .htaccess。

linux比windows里面文件名前面多了一个点。如果没找到AccessFileName自己在httpd.conf文件最后面加上。

 

第二种:AllowOverride 的设置。

默认AllowOverride 为AllowOverride none。把这个改为:AllowOverride All。如果配置了多个虚拟目录需在每个目录里面开启,实例:

<VirtualHost *:80>
DocumentRoot “D:SvnTracsvnSVNRepositorywwwroot”
ServerName 127.0.0.1:80

DirectoryIndex index.html index.htm index.php index.shtml
<Directory “D:SvnTracsvnSVNRepositorywwwroot”>
Options Indexes FollowSymLinks
AllowOverride ALL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

<VirtualHost 127.0.0.2:80>
DocumentRoot “D:/SvnTrac/svn/SVNRepository/www/”
ServerName 127.0.0.2:80

DirectoryIndex index.html index.htm index.php index.shtml
<Directory “D:/SvnTrac/svn/SVNRepository/www/”>
Options Indexes FollowSymLinks
AllowOverride ALL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

 

第三种:Options 的设置

默认设置是:Options Indexes FollowSymLinks
如果改成以下设置后,就会出错
Options Indexes FollowSymLinks MultiViews Includes (出错)
如果要启用,目录浏览 MultiViews
服务器端包含 Includes (<!–#include virtual=”top.htm” –>)

为了简单可以设置为:Options All

前两种是配置中常见的错误,第三种一般少见,最后提醒大家一下,记得配置文件改好后一定要重启服务器啊。有问题,留言,或收听微薄。

本人试过以上方都不行,最后发现原来是重写规则前面多加了个斜杠

RewriteEngine on

RewriteRule ^index.html$ /index.php [L]

改成下面的就ok了

RewriteEngine on

RewriteRule ^index.html$ index.php [L]

.htaccess文件不能伪静态化的解决方法

标签:des   http   os   io   strong   文件   问题   html   sp   

原文地址:http://www.cnblogs.com/renzhe371/p/3940957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!