首页 > 求帮忙 '翻译' . htaccess 到 nginx

求帮忙 '翻译' . htaccess 到 nginx

求大神帮忙看下 , 我只知道 , 第二个的意思是 , 如果不是个文件或者文件夹则重定向到
比如访问 http://www.abc.com/def
http://www.abc.com/index.php?_url=/def

nginx 官方有这个文档 ... 但是看不懂 ...
http://nginx.org/en/docs/http/converting_rewrite_rules.html


RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]


here

【热门文章】
【热门文章】