这里是文章模块栏目内容页
nginx 和apache配置隐藏index.php实现pathinfo模式访问方法

这里介绍nginx的隐藏index.php办法:

location / {       
     if (!-e $request_filename) {    
                 rewrite  ^(.*)$  /index.php?s=/$1  last;
            }
}

下面是一个常规的nginx站点 vhost配置格式:

server
    {        listen 80;     
   #listen [::]:80 default_server ipv6only=on;
        server_name jiqing.dexin.com;  
         index index.html index.htm index.php admin.php; 
        root  /home/wwwroot/default/dexin/dragon/public; 
     
       #error_page   404   /404.html;
        include enable-php-pathinfo.conf;  
        location /nginx_status
        {            stub_status on;   
                      access_log   off;
        } 
         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {     
                expires      30d;
        }
         location ~ .*\.(js|css)?$
        {   
                  expires      12h;
        }
                          location ~ /\.
        {  
                                    deny all;
        } 
          location / {   
                   if (!-e $request_filename) { 
                                  rewrite  ^(.*)$  /index.php?s=/$1  last;
                                  
            }
        }       
                                  
             access_log  /home/wwwlogs/access.log;
    }

支持pathinfo模式:

打开Nginx的配置文件 /usr/local/nginx/conf/nginx.conf 一般是在这个路径,根据你的安装路径可能有所变化。如果你配置了vhost,而且只需要你这一个vhost支持pathinfo的话,可以直接打开你的vhost的配置文件。找到类似如下代码(不同版本的nginx可能稍有不同,但是相差不会很远):

    location ~ .*.(php|php5)?$
         {
                 #原有代码
         }

修改成:

    #去掉$是为了不匹配行末,即可以匹配.php/,以实现pathinfo
     #如果你不需要用到php5后缀,也可以将其去掉
     location ~ .php
         {
                 #原有代码
                 
                 #定义变量 $path_info ,用于存放pathinfo信息
                 set $path_info "";
                 #定义变量 $real_script_name,用于存放真实地址
                 set $real_script_name $fastcgi_script_name;
                 #如果地址与引号内的正则表达式匹配
                 if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
                         #将文件地址赋值给变量 $real_script_name
                         set $real_script_name $1;
                         #将文件地址后的参数赋值给变量 $path_info
                         set $path_info $2;
                 }
                 #配置fastcgi的一些参数
                 fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
                 fastcgi_param SCRIPT_NAME $real_script_name;
                 fastcgi_param PATH_INFO $path_info;
         }

这样,nginx服务器就可以支持pathinfo了。但是如果要支持ThinkPHP的URL_MODE设置为2的模式,还需要配置rewrite规则。找到access_log语句,在其上方加上以下语句:

    #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
     if (!-e $request_filename)
         {
             #地址作为将参数rewrite到index.php上。
             rewrite ^/(.*)$ /index.php/$1;
             #若是子目录则使用下面这句,将subdir改成目录名称即可。
             #rewrite ^/subdir/(.*)$ /subdir/index.php/$1;
         }

相比nginx, apache 进行路由要简单方便得多,因为它不需要去修改配置文件,也不需要重启 nginx或者apache的服务。

只需要在站点的根目录下 建立一个 .htaccess 文件;

在这个文件里面加入内容:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$  index.php?/$1 [QSA,PT,L]
</IfModule>

当然前提是,你的apache 已经开启了 rewrite模块 。即这句 

IfModule mod_rewrite.c

是判断 是否开启了模块,里面的配置才生效。

好了,本文介绍的隐藏index.php方法,就到这里结束了。感谢大家的关注。