CentOs中Apache文件访问去除index.php

2021-06-22 09:04

阅读:347

标签:strong   span   ons   根目录   3.2   站点   tar   配置   write   

0.apache下面和index.php同一个目录下面的 .haccess


     RewriteEngine on
     RewriteCond %{REQUEST_FILENAME} !-d
     RewriteCond %{REQUEST_FILENAME} !-f
     RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]

1.centos的配置文件放在: /etc/httpd/conf/httpd.conf

LoadModule rewrite_module modules/mod_rewrite.so

将前面"#"去掉,如果不存在则添加上句。

2.如果你的网站是根目录的话:找到


  Options FollowSymLinks
  AllowOverride None  

将上面的None改为All

3.如果你的站点不在根目录,设置如下:

"/var/www/html/my_directory"> 
  Order allow,deny
  Allow from all
  AllowOverride All

然后重启服务器,service httpd restart ,这样.htaccess就可以使用了

4.index.php (thinkphp3.2.3版本)

define(‘__APP__‘, ‘‘); //将index.php自动隐藏

CentOs中Apache文件访问去除index.php

标签:strong   span   ons   根目录   3.2   站点   tar   配置   write   

原文地址:http://www.cnblogs.com/weizaiyes/p/7170362.html


评论


亲,登录后才可以留言!