Webサーバーの設定

Apacheの設定推奨
のApacheで、httpd.confファイルをまたは仮想ホストの設定ファイルに以下の構成を使用します。あなたは/に/ベーシック/ウェブ実際の基本/ウェブディレクトリのパスを交換する必要があることに注意してください。

# 设置文档根目录为 "basic/web"
DocumentRoot "path/to/basic/web"

<Directory "path/to/basic/web">
    # 开启 mod_rewrite 用于美化 URL 功能的支持(译注:对应 pretty URL 选项)
    RewriteEngine on
    # 如果请求的是真实存在的文件或目录,直接访问
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    # 如果请求的不是真实文件或目录,分发请求至 index.php
    RewriteRule . index.php

    # if $showScriptName is false in UrlManager, do not allow accessing URLs with script name
    RewriteRule ^index.php/ - [L,R=404]

    # ...其它设置...
</Directory>

nginxの設定を推奨
nginxのを使用するために、あなたはPHPは、FPMのSAPIとしてインストールされている必要があります。あなたはmysite.localがサービスを提供するホストの実際の名前に置き換え、へ/ベーシック/ウェブ実際の基本/ウェブディレクトリ/パスに置き換えられます、以下のnginxの設定を使用することができます。

server {
    charset utf-8;
    client_max_body_size 128M;

    listen 80; ## listen for ipv4
    #listen [::]:80 default_server ipv6only=on; ## listen for ipv6

    server_name mysite.test;
    root        /path/to/basic/web;
    index       index.php;

    access_log  /path/to/basic/log/access.log;
    error_log   /path/to/basic/log/error.log;

    location / {
        # Redirect everything that isn't a real file to index.php
        try_files $uri $uri/ /index.php$is_args$args;
    }

    # uncomment to avoid processing of calls to non-existing static files by Yii
    #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
    #    try_files $uri =404;
    #}
    #error_page 404 /404.html;

    # deny accessing php files for the /assets directory
    location ~ ^/assets/.*\.php$ {
        deny all;
    }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 127.0.0.1:9000;
        #fastcgi_pass unix:/var/run/php5-fpm.sock;
        try_files $uri =404;
    }

    location ~* /\. {
        deny all;
    }
}

この設定を使用する場合、あなたは、php.iniファイルで0 = cgi.fix_pathinfo、あなたはSTAT()システムコールをオフ不要なの多くを避けることができます設定する必要があります。

おすすめ

転載: blog.51cto.com/11315052/2451908