Hello, How i can in htaccess file redirect some link example: page.com/example1 page.com/example2 redirect on example page.com/redirect ? Thanks.
I don't quite follow the question but this will help. https://my.bluehost.com/cgi/help/htaccess_redirect Nigel
It sounds like he wants to do a 301 redirect of certain pages using htaccess. If you have cPanel, you can just set redirects in there, that is easier. Otherwise, it is something like this --- RewriteCond %{HTTP_HOST} ^.*$ RewriteRule ^pagename\.htm$ "http\:\/\/www\.domain\.com\/pagename2\.htm" [R=301,L]