首页 >php教程 >php手册 >nginx url重写

nginx url重写

WBOY
WBOY原创
2016-06-06 19:35:371525浏览

html|htm伪静态 无 location ~ \.(html|htm)$ {if ( !-e $request_filename ) { rewrite "^/(.+/)?([a-z-A-Z-0-9]+)(_[a-z-A-Z-0-9]+)*.(html|htm)$" /$1index.php?module=$2action=$3 last;}}

html | htm 伪静态
location ~ \.(html|htm)$ {
		if ( !-e $request_filename ) {
		    rewrite "^/(.+/)?([a-z-A-Z-0-9]+)(_[a-z-A-Z-0-9]+)*.(html|htm)$" /$1index.php?module=$2&action=$3 last;
		}
	}
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn