View Single Post
02-11-2011, 10:54 PM
#3
Eightloop is offline Eightloop
Eightloop's Avatar
Status: Member
Join date: Jan 2011
Location:
Expertise: Programming, photography
Software: Notepad++, Photoshop
 
Posts: 112
iTrader: 0 / 0%
 

Eightloop is an unknown quantity at this point

  Old

This should do it if the 7star.php file is in the root directory of your website. It should work, I tested it.

PHP Code:
Options +FollowSymlinks
RewriteEngine on

RewriteRule 
^7star.php /7STAR.php [r=301
This will redirect it from 7star.php to 7STAR.php. Sometimes you'll need to leave the "Options +FollowSymlinks" out. This depends on the server.

I hope that helps.

EDIT: Of course this goes into a .htaccess file placed in the root directory of your public folder.

Thanked by:
jasonladue (02-12-2011)