我的Apache服务器收到来自客户端应用程序的错误请求:
https://example.com//api/followers/0123?currentuserid=0123
如何正确重定向.htaccess中的请求? 我想将API调用转发给
https://example.com/api/followers/0123?currentuserid=0123
我已经尝试过类似的方法,但是没有用。
RewriteCond %{REQUEST_URI} ^/api(/.*)?$
RewriteRule ^(.*)$ api/$1 [R=301,L]