我的正则表达式没有将//
传递给php它只传递一个/
首先:
RewriteRule ^api-([^=]*)=([^=]*)$ index.php?page=$1&public=$2 [L]
应该是这样的: http:// main_url / api-public = http://google.lt
还有一个:
RewriteRule ^api-([^=]*)=([^=]*)~user=([^=]*)~hash=([^=]*)$ index.php?page=$1&private=$2&user=$3&hash=$4 [L]
应该是这样的: http://main_url/api-private=google.lt~user=USERNAME@hash=SECRET_TOKKEN
有任何建议如何使其发挥作用?