国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Nginx > 正文

PHP的Symfony和CodeIgniter框架的Nginx重寫規則配置

2024-08-30 12:27:58
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了PHP的Symfony和CodeIgniter框架的Nginx重寫規則配置,文中截取配置中關鍵的一些rewrite寫法進行講解,需要的朋友可以參考下
 

Symfony
Symfony國外很流行的php框架,目前國內用的相對較少,但是一定會在國內火起來. nginx重寫規則如下

server { server_name vevb.com m.survivalescaperooms.com; root /data/site/m.survivalescaperooms.com;location / { # try to serve file directly, fallback to rewrite try_files $uri @rewriteapp; }location @rewriteapp { # rewrite all to app.php rewrite ^(.*)$ /app.php/$1 last; }location ~ ^/(app|app_dev|config).php(/|$) { fastcgi_pass unix:/var/run/php5-fpm.sock; # 改成你對應的FastCGI fastcgi_split_path_info ^(.+.php)(/.*)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS off; }error_log /data/logs/nginx/m.survivalescaperooms.com_error.log; }

 
重啟nginx即可

 

CodeIgniter
CodeIgniter,即被很多人簡稱為CI的高人氣PHP框架,其中文社區也比較活躍,來看一下CI的rewrite寫法:

server { listen 80; server_name vevb.com m.survivalescaperooms.com;root /data/site/m.survivalescaperooms.com; index index.php; error_log log/error.log;# set expiration of assets to MAX for caching location ~* .(ico|css|js|gif|jpe?g|png)(?[0-9]+)?$ { expires max; log_not_found off; }# main codeigniter rewrite rule location / { try_files $uri $uri/ /index.php; }# php parsing location ~ .php$ { root /data/site/vevb.com/; try_files $uri =404; fastcgi_pass unix:/tmp/php5-fpm.sock; # 改成對應的FastCGI fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; fastcgi_buffer_size 128k; fastcgi_buffers 256 4k; fastcgi_busy_buffers_size 256k; fastcgi_temp_file_write_size 256k; }}


修改CI(CodeIgniter )配置文件config.php

$config['base_url'] = "http://m.survivalescaperooms.com/"; $config['index_page'] = ""; $config['uri_protocol'] = "REQUEST_URI";


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 定陶县| 南部县| 屏南县| 海淀区| 彭山县| 大冶市| 东至县| 南江县| 涡阳县| 荥经县| 嘉兴市| 饶河县| 兴文县| 许昌市| 永安市| 兴和县| 阿坝| 三河市| 澎湖县| 喀喇沁旗| 曲周县| 长寿区| 曲沃县| 青川县| 山东省| 綦江县| 昌平区| 山西省| 大冶市| 淅川县| 山东省| 海丰县| 咸阳市| 平凉市| 山阳县| 阆中市| 承德县| 通辽市| 铜山县| 桐乡市| 曲沃县|