僞靜態是一種能夠把文件後綴改爲任何可能的一種方法,若是我想把PHP文件僞靜態成html文件,這種至關簡單的,下面來介紹nginx 僞靜態配置方法有須要瞭解的朋友可參考。php
nginx裏使用僞靜態是直接在nginx.conf 中寫規則的,並不須要像apache要開啓寫模塊(mod_rewrite)才能進行僞靜態。html
nginx只須要打開nginx.conf配置文件,在server裏面寫須要的規則便可。nginx
server
{
listen 80;
server_name bbs.jb51.net;
index index.html index.htm index.php;
root /home/www/bbs;apache
error_page 404 /404.htm; #配置404錯誤頁面
location ~ .*.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}服務器
#下面就是僞靜態了網站
location /{
rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last;
}
access_log access_log off;
} ui
而後重啓nginx服務器僞靜態就生效了,這種維護起來非常不方便咱們能夠把它寫在外部文件如bbs_nginx.conf中.net
在/home/www/bbs目錄下建立bbs_nginx.conf文件並寫入如下代碼:unix
ocation /{
rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last;
} server
而後在上面的代碼後面加上以下代碼:
include /home/www/bbs/bbs_nginx.conf;
這樣網站根目錄中的bbs_nginx.conf僞靜態規則,便可實現單獨管理。