I don't know the name of redirection. I want to redirect some tags & categories using own website. For an example: http://www.mydomain.com/tag/tag-name/ to http://www.mydomain.com/ http://www.mydomain.com/tag/tag-name-2/ to http://www.mydomain.com/ http://www.mydomain.com/category/category-name/ to http://www.mydomain.com/ http://www.mydomain.com/category/category-name-2/ to http://www.mydomain.com/ Code (markup): How to create this type of redirection on htaccess??? Is is possible?
Yes, creating an htaccess file will allow you to specify url redirections for your site. You should be able to find lots of htaccess tutorials out there. You just create the file, and then need to know how to write each redirection. It is not that easy but find a tutorial and you will get there.
Do you have any helpful suggestion? I'm looking for programming help, i already check out there hundred of threads.
To redirect a sub directory to the root directory you can use: Redirect 301 /tag/tag-name http://www.mydomain.com/ Code (markup):