首頁 > 運維 > Nginx > 主體

nginx偽靜態規則配置

angryTom
發布: 2019-10-18 10:53:42
原創
35343 人瀏覽過

nginx偽靜態規則配置

nginx伪静态规则配置

nginx里使用伪静态是直接在nginx.conf中写规则的,并不需要像apache要开启写模块(mod_rewrite)才能进行伪静态。

nginx只需要打开nginx.conf配置文件,在server里面写需要的规则即可。

server 
{ 
listen       80; 
server_name  www.php.cn; 
index index.html index.htm index.php; 
root  /home/www/bbs;
 
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; 
}
登入後複製

然后重启nginx服务器伪静态就生效了。

这种维护起来很是不方便我们可以把它写在外部文件如bbs_nginx.conf中

在/home/www/bbs目录下创建bbs_nginx.conf文件并写入以下代码:

location /{ 
rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last; 
}
登入後複製

然后在上面的nginx.conf代码后面加上如下代码:

include /home/www/bbs/bbs_nginx.conf;
登入後複製

这样网站根目录中的bbs_nginx.conf伪静态规则,即可实现单独管理。

推荐教程:nginx教程

以上是nginx偽靜態規則配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!