I have the following rewrite rule:
RewriteRule ^support/(.*)$ /blog/support/$1 [R=301,NC,L]
However, all it does is a simple redirect. What I want to is for /support
to show the contents of /blog/support
without changing the URL from /support
. How can I do this?
In addition, the above only works when /support
has a trailing slash.