问题描述
求大神帮忙看下 , 我只知道 , 第二个的意思是 , 如果不是个文件或者文件夹则重定向到比如访问 http://www.abc.com/defhttp://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]
问题解答
回答1:here