公司已有一個主站www.a.com。
現在想增加網校培訓模組,為了保持 以前的功能 ,及相應的授權等功能 ,現在希望再配置一個www.a.com/edu,目前設定 的配置如下,發現存在問題除了首頁其它不能正常跳轉,頁面中的靜態檔案無法正常跳轉,請教高手幫我改一下
location /edu {
alias html/soho/web; index app.php; try_files $uri @rewriteapp;
}
location @rewriteapp { root html/soho/web/; rewrite ^\/edu\/(.*)$ /app.php/$1 last;
}
location ~ ^/udisk { internal; root html/soho/app/data/;}location ~ ^/(app|app_dev)\.php(/|$) { fastcgi_pass php_processes; include fastcgi_params; fastcgi_param SCRIPT_FILENAME html/soho/web$fastcgi_script_name; fastcgi_split_path_info ^(.+\.php)(/.*)$; fastcgi_param HTTPS off; fastcgi_param HTTP_X-Sendfile-Type X-Accel-Redirect; fastcgi_param HTTP_X-Accel-Mapping /udisk=html/soho/app/data/udisk; fastcgi_buffer_size 128k; fastcgi_buffers 8 128k;
}
location ~* \.(jpg|jpeg|gif|png|ico|swf)$ { expires 3y; access_log off; gzip off; } location ~* \.(css|js)$ { access_log off; expires 3y; } location ~ ^/edu/files/.*\.(php|php5)$ { deny all; } ########edusoho
點擊並拖拽以移動
回複內容:
公司已有一個主站www.a.com。
現在想增加網校培訓模組,為了保持 以前的功能 ,及相應的授權等功能 ,現在希望再配置一個www.a.com/edu,目前設定 的配置如下,發現存在問題除了首頁其它不能正常跳轉,頁面中的靜態檔案無法正常跳轉,請教高手幫我改一下
location /edu {
alias html/soho/web; index app.php; try_files $uri @rewriteapp;
}
location @rewriteapp { root html/soho/web/; rewrite ^\/edu\/(.*)$ /app.php/$1 last;
}
location ~ ^/udisk { internal; root html/soho/app/data/;}location ~ ^/(app|app_dev)\.php(/|$) { fastcgi_pass php_processes; include fastcgi_params; fastcgi_param SCRIPT_FILENAME html/soho/web$fastcgi_script_name; fastcgi_split_path_info ^(.+\.php)(/.*)$; fastcgi_param HTTPS off; fastcgi_param HTTP_X-Sendfile-Type X-Accel-Redirect; fastcgi_param HTTP_X-Accel-Mapping /udisk=html/soho/app/data/udisk; fastcgi_buffer_size 128k; fastcgi_buffers 8 128k;
}
location ~* \.(jpg|jpeg|gif|png|ico|swf)$ { expires 3y; access_log off; gzip off; } location ~* \.(css|js)$ { access_log off; expires 3y; } location ~ ^/edu/files/.*\.(php|php5)$ { deny all; } ########edusoho
點擊並拖拽以移動
研究了兩天終於弄好了,代碼放到/edu/web/目錄下
主要是找到了調試方法,error_log logs/error.log debug;
增加上debug,可以看到詳細的調試情況
=`########edu eduweb
location /edu/web {
alias html/edu/web; index app.php; try_files $uri @rewriteapp;
}
location @rewriteapp { rewrite ^/edu/web/(.*)$ /edu/web/app.php/$1 last;
}
location ~ ^/udisk { internal; root html/edu/app/data/;}location ~ ^/edu/web/(app|app_dev)\.php(/|$) { fastcgi_pass php_processes; fastcgi_split_path_info ^(.+\.php)(/.*)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS off; fastcgi_param HTTP_X-Sendfile-Type X-Accel-Redirect; fastcgi_param HTTP_X-Accel-Mapping /udisk=html/edu/app/data/udisk; fastcgi_buffer_size 128k; fastcgi_buffers 8 128k;
}
location ~* \.(jpg|jpeg|gif|png|ico|swf)$ { expires 3y; access_log off; gzip off; } location ~* \.(css|js)$ { access_log off; expires 3y; } location ~ ^/edu/files/.*\.(php|php5)$ { deny all; } ########edu`