我需要有关重写规则和正则表达式的帮助
这是我的输入网址
http://localhost/ws/rest/user/login?login=user_login&password=user_pass
我希望它重定向到这个
http://localhost/index.php?type=rest&ressource=user&action=login&login=user_login&password=user_pass
我的重写规则
RewriteCond %{REQUEST_METHOD} ^(GET|POST)
RewriteRule ^ws/(.+)/(.+)/([A-Za-z]+)(\\?)(.+)? index.php?type=$1&ressource=$2&action=$3&$5 [L]
我认为问题出?
在 url 中,因为当我用 a 替换时&
它可以工作吗?