This is how to remove http:// and make all urls http:// www
1. Open Notepad.
2. Paste this into it,
PHP Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.SITENAMEHERE.com [NC]
RewriteRule ^(.*)$ http://www.SITENAMEHERE.com/$1 [R=301,L]
3. Replace "sitenamehere" with your domain. Do not edit anything else.
For example, if you were working on NetBuilders you would just replace "SITENAMEHERE" with "netbuilders".
4. File - Save As - type in ".htaccess" (without the quotes) into the file name box.
5. You'll see beneath that another box with the default "Text Document" in it. Change that to "All Files" as seen below.

6. Now, open your FTP Program (you said you use FileZilla) and paste it into the root directory of your site.
Examples of the root directory are: public_html or httpdocs - just drag the file into that folder. (The title will depend on the software you're using for your server, but typically it will be public_html.)
If you're using something like Wordpress (I mention this because I think that's what you're using) you just put it in the same directory as all of your files and folders. (Such as wp-admin, wp-content, wp-includes, etc.)
If this isn't working, I can upload the file for you if needed.
Bookmarks