OK cant believe you cant find one coder in here to make you a new htaccess file .
have you google the htaccess how too they are pretty intense :>
post your htaccess you have so far
--------------- Added [DATE]1274756243[/DATE] at [TIME]1274756243[/TIME] ---------------
Code:
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# this is the rewrite rule that I added
# it should redirect to www.mydomain.com if http_post variable does not
start with www
# but I have no idea why it does not work
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://www.mydomain.com/ ^/(.*) [L,R=301]
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
heres one to start with
--------------- Added [DATE]1274756356[/DATE] at [TIME]1274756356[/TIME] ---------------
thats a rewrite htaccess to redirect someone was working on it i think its ok if changed just dont uncomment anything and change the domains