I will give $2 to whom ever can add a simple redirection preferably a 301 to my site. I want www.xeenit.com to redirect to www.xeenit.com/directory First come first serve. I will PM details to you.
You can do this yourself: 1. Create a new file and name it index.php 2. Add the following to the file you just created <? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.your-new-domain.com" ); ?> PHP: Obviously, change the your-new-domain.com to your actual domain 3. Upload to the root directory of your old domain. UPDATE :: UPDATE :: UPDATE Sorry, didn't realize you were using same domain on redirects... In this case, what you may want to do is simply add the following to your .htaccess file: Redirect /index.php http://xeenit.com/directory/ You may also want to add: ErrorDocument 404 http://xeenit.com/directory/ so that any 404's lead to the /directory/ directory as well