我有一個使用付款API的腳本,付款成功後將用戶發送到鏈接並腳本驗證付款。在mode_rewrite規則中作出例外
但我開始使用mod_rewrite使URL友好。編輯.htaccess
許多用戶給我發電子郵件,並說他們的付款已添加到他們的帳戶。
我正在使用此規則。
# Redirect "ugly" URLs to the desired URLs
RewriteCond %{THE_REQUEST} \?a=([^\ ]*)
RewriteRule ^$ /%1? [R=301,L]
# Internally rewrite the "pretty" URL to the real URL
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{THE_REQUEST} !/admin.php [NC]
RewriteRule ^([^/]*)$ /?a=$1 [L]
它basicaly改寫hort.com/?a=page
到hort.com/page
付款接受鏈接
hort.com/index.php?a=return_visa&process=yes
而且這一
hort.com/?a=return_visa&process=yes
我想要的東西添加到我的規則來阻止edithing這個鏈接。
喜先生。你能看看這個嗎? @anubhava – jimuty
'hort.com/?a = return_visa&process = yes'是否應該重定向到'hort.com/return_visa'? – anubhava
沒有。它不應該。第一個環節接受來自美國的簽證來自俄羅斯銀行。 – jimuty