Dear all,
I have a domain, let's call it mydomain.com
And I have a blog, let's call it myblog.com/myfolder/myslug
As I need people to go to http: //www. myblog.com/myfolder/myslug everytime they type http: //www. mydomain.com, I have edited htaccess and added to the IfModule:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^.*mydomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.myblog.com/myfolder/myslug? [R=301,L]
And this words great. But in the address bar shows http: //www. myblog.com/myfolder/myslug and I would like it to show http: //www. mydomain.com .. How can I do this???
Thanks a lot in advance!