我有一个带有以下规则的.htaccess文件
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
RewriteCond %{HTTP_HOST} ^www\.domain\.ir [NC]
RewriteRule ^(.*)$ http://domain.ir/$1 [L,R=301]
DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l
RewriteRule ^ - [L]
RewriteRule ^item/([[a-zA-Z0-9_-]+)/?([^/]+)$ item.php?id=$1&title=$2 [NC,L]
...
ErrorDocument 404 /404.php
我的网址是
http://domain.ir/item/{number}/{title}
并且工作完美,但我的网站上有一笔付款,成功交易返回以下网址
http://domain.ir/item/?Authority=000000000000000000000000000071165119&Status=OK
现在我的问题是,当返回此URL时,页面重定向到我的主页,我无法处理返回的URL 我想如果我的页面在URL中有权限.htaccess不会重定向到另一个主页