Hello, I have installed MODx Revolution 2.2 under a Directory, and am curious as to how I can manage to have proper redirection. For example:
#RewriteCond %{HTTP_HOST} .
#RewriteCond %{HTTP_HOST} !^www\.example-domain-please-change\.com [NC]
#RewriteRule (.*) http://www.example-domain-please-change.com/$1 [R=301,L]
I want:
mydomain.com to always redirect to www.mydomain.com regardless of the URL/URI entered in after the root.
I have MODx installed under /blog so I need:
mydomain.com/blog to always redirect to www.mydomain.com/blog regardless of the URL/URI following /blog.
I am running Apache.
Thank you so much for your help!