需求分析 只須要測試lamp環境運行 php
目標 快速安裝lamp環境html
phpstudy一鍵按裝mysql
phpStudy for Linux 支持Apache/Nginx/Tengine/Lighttpd,
支持php5.2/5.3/5.4/5.5切換
已經在centos-6.5,debian-7.4.,ubuntu-13.10測試成功。nginx
下載版:http://lamp.phpstudy.net/phpstudy.binsql
完整版:http://lamp.phpstudy.net/phpstudy-all.binthinkphp
安裝:ubuntu
wget -c http://lamp.phpstudy.net/phpstudy.bin
chmod +x phpstudy.bin #權限設置
./phpstudy.bin #運行安裝centos
需求 在線運行並須要各類配置 框架
目標 手動搭建lamp環境測試
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
thinkphp重寫配置 ( 配置環境: centos6 phpstudy php5 mysql5 nginx )
URL REWRITE 模式 REWRITE 模式也稱 URL重寫, 可用於隱藏 PATHINFO 模式路徑中的 index.php, 開啓 REWRITE 模式的 Nginx 配置爲: server { listen 80; server_name localhost; location / { root D:/Projects/Demo/thinkphp; # 你的 TP 框架 index.php 所在目錄, 記得用 / 分割路徑 index index.php index.html index.htm; try_files $uri $uri/ /index.php?s=$uri; # 核心 } # ... # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root D:/Projects/Demo/thinkphp; # 你的 TP 框架 index.php 所在目錄, 記得用 / 分割路徑 fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } 配置完成後修改 ThinkPHP 的 URL 模式爲 REWRITE, 編輯配置文件 ThinkPHP/Conf/convention.php 中修改 URL_MODEL 參數值爲 2 (REWRITE 模式)便可經過 http://serverName/模塊/控制器/操做 方式訪問。
感謝地址 --->>> http://www.widlabs.com/article/nginx-thinkphp-url-pathinfo-rewrite