Hi, I need to do fast 301 redirection I have: http:// www. domain.com/tags/tag_example/ I need to redirect it (301) to: http:// www. domain.com/search/tag_example/ What I do: RewriteCond %{REQUEST_URI} ^(.*)/tags/(.*) RewriteRule ^(.*)$ http:// www. domena.com/search/(.*) [R=301,L] However it's not working... I get: http:// www. domain.com/search/(.*) Appreciate your help.
What your control panel?you can do it from most available control panel like Cpanel,HSPERE,ISConfig etc.
You can alternatively use PHP: <?php header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.yourRedirect.com/"); exit(); ?> Or the proper way with htaccess: rewriteEngine on rewriteRule ^myphp\.php$ http://www.mysite.com/thenewredirect.php [R=301,L]