如何将子目录重定向到Apache上的其他子目录

时间:2019-12-07 20:21:59

标签: apache .htaccess lamp

我的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]

0 个答案:

没有答案