我想从 to 重定向一个 url http
,https
但如果 url 没有 traillin 斜杠,它将不会被重定向。我尝试了很多方法,因为我在 Apache 中是新手,我没有做过。这是配置:
<VirtualHost *:80>
ServerName mydomain.nl
ServerAlias www.mydomain.nl
ProxyPass / http://127.0.0.1:3001/
ProxyPassReverse / http:127.0.0.1:3001/
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
Redirect permanent / https://mydomain.nl
</VirtualHost>