T tanicos Established Member ★ 15 ★ Impact 0 Aug 8, 2008 926 views 1 reply #1 hello google indexed www.example.com/shop and now i want a 301 redirect to www.example.com can someone help me? thanks
hello google indexed www.example.com/shop and now i want a 301 redirect to www.example.com can someone help me? thanks
Keral_Patel I'll do itRestricted (Chatroom) Impact 1,450 Aug 8, 2008 #2 Code: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.example.com/$1 [R=301,L] Substitute example.com with your real domain name and then, Place this code in .htaccess file in the shop folder. DONE.
Code: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.example.com/$1 [R=301,L] Substitute example.com with your real domain name and then, Place this code in .htaccess file in the shop folder. DONE.