htaccess 重写到 Nginx

问题描述

嘿嘿 :) 我找不到将 Htaccess 转换为 Nginx 的好方法:S

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l    
RewriteRule ^(.+)$ index.PHP?url=$1 [QSA,L]

我需要所有的 $_GET['url']。

我尝试了一个在线转换器,它给了我这个:

    if (!-d $request_filename){
      set $rule_0 1$rule_0;
    }
    if (!-f $request_filename){
      set $rule_0 2$rule_0;
    }
    if (!-e $request_filename){
      set $rule_0 3$rule_0;
    }
    if ($rule_0 = "321"){
      rewrite ^/(.+)$ /index.PHP?url=$1 last;
    }

它有点工作......但我的日志文件垃圾邮件

[warn] 10704#10704: *50589 using uninitialized "rule_0" variable,client: 2003:balblablabla:ae64,server: my.domain,request: "GET /chat/chat.PHP?action=chatheartbeat&fromuname=undefined&_=1609542806090 HTTP/2.0",host: "my.domain",referrer: "https://my.domain/chat/"

是因为'_=1609...'吗?

谢谢你的帮助! :)

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)