0

I have this location

http://somesite.com/pot_system.shtml

and i want to redirect to

http://somesite.com/build_me_today

I want to do this via htaccess is that possible

I used

Redirect /pot_system.shtml http://somesite.com/build_me_today
Matt Elhotiby
  • 43,028
  • 85
  • 218
  • 321

3 Answers3

1

Using a 301 redirect:

Redirect 301 /pot_system.shtml /build_me_today
Damien
  • 1,219
  • 13
  • 23
1

Simplest way:

Redirect /pot_system.shtml /build_me_today
Alex
  • 64,178
  • 48
  • 151
  • 180
1

@Matt:

Options +FollowSymLinks
RewriteEngine on
RewriteRule /pot_system.shtml http://somesite.com/build_me_today [R=301,L]
stealthyninja
  • 10,343
  • 11
  • 51
  • 59