Hi, I just installed a XAMPP server and i have a static ip address.... Now my site is online when i just enter its static IP address... But i want to put a domain on it... i have registered a domain www.nasbar.org from netfirms, but not able to forward that domain...... please help..... http://www.nasbar.org/
Add a .httacess file on the root directory of your domain: Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^yoursite.com [NC] RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301] or you can add this rule to your aapche config file directly. (as it was mentioned above)