URL设计

URL访问受路由影响,如果在没有定义或匹配路由的情况下(开启了friendly url),则是基于:

http://serverName/index.php(或者其它入口文件)/控制器/操作/参数/值…

普通模式的URL访问不再支持,但参数可以支持普通方式传值

如果不支持PATHINFO的服务器可以使用兼容模式访问如下:

http://serverName/index.php?ctl=控制器&met=操作&参数名=参数值...

URL重写

可以通过URL重写隐藏应用的入口文件index.php(也可以是其它的入口文件,但URL重写通常只能设置一个入口文件),下面是相关服务器的配置参考:

[ Apache ]

  1. httpd.conf配置文件中加载了mod_rewrite.so模块
  2. AllowOverride None 将None改为 All
  3. 把下面的内容保存为.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>

示例

LoadModule rewrite_module modules/mod_rewrite.so

<Directory />
    Options FollowSymLinks
    AllowOverride None
    #AllowOverride All

    #AllowOverrideNone  改为  AllowOverride All   这样.htaccess文件才能启用
    #rewrite 规则完全没有必要写道 httpd.conf 里面,使用 .htaccess 比较好。
    <IfModule mod_rewrite.c>
            RewriteEngine on

            #不显示index.php
            #RewriteBase /

            RewriteCond %{REQUEST_FILENAME} !-d
            RewriteCond %{REQUEST_FILENAME} !-f

            RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
            #RewriteRule ^(.*)$ index.php/$1 [L] 
            #RewriteRule ^/app/(.*)$ /index.php/app/$1 [L,NC]
            #RewriteRule ^/test([0-9]*).html$ /test.php?id=$1    
    </IfModule>
</Directory>

[ IIS ]

如果你的服务器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:

RewriteRule (.*)$ /index\.php\?s=$1 [I]

在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:

<rewrite>
 <rules>
 <rule name="OrgPage" stopProcessing="true">
 <match url="^(.*)$" />
 <conditions logicalGrouping="MatchAll">
 <add input="{HTTP_HOST}" pattern="^(.*)$" />
 <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
 <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
 </conditions>
 <action type="Rewrite" url="index.php/{R:1}" />
 </rule>
 </rules>
 </rewrite>

[ Nginx ]

在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:

location / { // …..省略部分代码
   if (!-e $request_filename) {
           rewrite  ^(.*)$  /index.php?s=/$1  last;
    }
}

示例

server {


    location / {     
        index index.html index.htm index.php;
        if (-e $request_filename) {
            break;
        }

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

    location ~ \.php {
         fastcgi_pass 127.0.0.1:9000;
         fastcgi_index index.php;
         include ./conf.d/fcgi.conf;

         set $real_script_name $fastcgi_script_name;
         if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
             set $real_script_name $1;
             set $path_info $2;
         }

         fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
         fastcgi_param SCRIPT_NAME $real_script_name;
         fastcgi_param PATH_INFO $path_info;
    }
}

另外需要在PHP-CGI的配置文件(Ubuntu 上此配置文件位于/etc/php5/cgi/php.ini)中,找到cgi.fix_pathinfo选项,修改为:
cgi.fix_pathinfo=1
文档更新时间: 2020-05-28 09:58   作者:随商信息技术(上海)有限公司