phpGrace 对 php 环境要求如下 :

    1. apache/nginx + php 5.3 + ( 使用命名空间 )
    2. apache/nginx + php 7.0 +

    是的我们“嫌弃”且不支持 IIS + PHP ! ^_^php 扩展要求

    1. 1pdo
    2. 2mbstring
    3. 3gd
    4. 4curl
    5. 5、其他扩展见对应工具类的使用说明

    伪静态支持说明phpGrace 需要 web 服务器的伪静态支持,请开启对应 web 服务器的伪静态模块!apache 服务器伪静态设置说明 :

    1. .htaccess 文件添加到对应分组模块文件夹下
    2. <IfModule mod_rewrite.c>
    3. RewriteEngine on
    4. RewriteCond %{REQUEST_FILENAME} !-d
    5. RewriteCond %{REQUEST_FILENAME} !-f
    6. RewriteRule ^(.*)$ ./index.php?pathInfo=$1 [QSA,PT,L]
    7. </IfModule>

    nginx 服务器伪静态设置示例 :

    1. server {
    2. listen 80;
    3. server_name www.phpgrace.com phpgrace.com;
    4. root "D:/webs/www.phpgrace.com";
    5. location /admin {
    6. index index.html index.htm index.php;
    7. if (!-e $request_filename){
    8. rewrite ^/admin/(.*)$ /admin/index.php?pathInfo=$1;
    9. }
    10. }
    11. location / {
    12. index index.html index.htm index.php;
    13. if (!-e $request_filename){
    14. rewrite ^(.*)$ ./index.php?pathInfo=$1;
    15. }
    16. }
    17. }

    说明 : /admin 代表 admin 分组(一般我们会将网站后端放置到此分组,命名可以自行设置);

    原文: http://www.phpgrace.com/doc/info/288-0.html