咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
1.nginx使用伪静态直接在配置文件中写规则,并不需要像apache要开启模块(mod_rewrite)才能进行伪静态。在server里面写入您的规则,/etc/init.d/nginx restart重启即可
2.如果是301重定向找到站点配置文件,列如我的test1.conf 找到server在域名后添加rewrite如下:
rewrite ^/(.*) http://www.landui.com/$1 permanent;