我使用的代碼點火器,htaccess重新格式化請求?
我們正在使用ping命令我們在example.com/transact/pass?request={base64 encoded string}
然而,由於是顯而易見的,你不能使用get請求的代碼點火器一個DPS系統。
所以我想知道是否有可能在.htaccess當URL被擊中格式化是那麼它擊中代碼點火器,其example.com/transact/pass/{base64 encoded string}
我使用的代碼點火器,htaccess重新格式化請求?
我們正在使用ping命令我們在example.com/transact/pass?request={base64 encoded string}
然而,由於是顯而易見的,你不能使用get請求的代碼點火器一個DPS系統。
所以我想知道是否有可能在.htaccess當URL被擊中格式化是那麼它擊中代碼點火器,其example.com/transact/pass/{base64 encoded string}
RewriteRule ^transact/pass/(.*)$ /transact/pass?request=$1 [L,PT]
在的.htaccess文件試試這個:
RewriteRule ^transact/pass?request=(.*)$ /transact/pass/$1
應提取請求參數並將其放入最後一個段。