首页  >  问答  >  正文

apache - 求帮忙 '翻译' . 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]

PHP中文网PHP中文网2713 天前421

全部回复(1)我来回复

  • PHP中文网

    PHP中文网2017-05-16 17:04:16

    这里

    回复
    0
  • 取消回复