Hi all,
I'm looking to implement a rewrite rule/rules in my .htaccess to redirect users that request specific folders on port 80 to be redirected to the same url on port 8080.
so visiting:
http://example.com/folderA/something/file.txt
would result in:
http://example.com:8080/folderA/something/file.txt
I only need the rule to work for directories within "folderA" and can't use mod_proxy as I can't change the preloaded apache modules.
Is this possible?
Thanks in advance
|