The stuff after the #### are just to tell you what I am doing and it's not actually part of my ssl.conf file
Trying to modify an ssl.conf configuration to do the following...
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^/(.*) https://misc.org/scores [L,R=301]
# takes misc.org and makes it misc.org/scores
#1
RewriteRule ^/scores/liverpool https://misc2.org/liverpool2 [L,R=301]
# redirect for '/scores/liverpool to misc2.org/liverpool2' works
#2
RewriteRule ^/scores/liverpool/child https://misc2.org/liverpool2/child [L,R=301]
# only redirects to /misc2.org/liverpool2 and never makes it to /misc2.org/liverpool2/child
If I comment out #1...#2 works but I need both to work.
What am I missing?
Thanks in advance