Status
Not open for further replies.

lig}{tning

Active Member
2,172
2009
385
0
i am having a problem my site cant open with www. only works with out www.

when i try with www. i get this error message ( Firefox can't find the server at www.warez-licious.com.)

.htaccess

# Full Seo Download Link for WCDDL Made By The Dude | MissionW.org
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^index\.html$ /index.php [QSA,L,NC]
RewriteRule ^download-([^/]+)-([^/]+)\.html download.php?id=$1 [QSA,L,NC]
RewriteCond %{HTTP_HOST} ^www.warez-licious.com$
RewriteRule ^(.*)$ "http\:\/\/warez\-licious\.com$1" [R=301,L]


As you can seen in the image in red color box thats what i see for every members who come online only the time keep changing but the Creating Thread well stay like that



5zl8aa.jpg
 
66 comments
Create a subdomain www [ex: www,domian,com]from your CP and link it to your public_html folder.

Your www redirect me to domian.com, that`s better to prevent double content in search engines thou.
 
It's not a dns problem. It's a .htacces problem. When you visit http://www.domain.com it redirects to http://domain.com.

Problem:
Code:
 RewriteRule ^(.*)$ "http\:\/\/warez\-licious\.com$1" [R=301,L]
^301 redirect.

Solution:
Code:
#RewriteCond %{HTTP_HOST} ^www.warez-licious.com$
#RewriteRule ^(.*)$ "http\:\/\/warez\-licious\.com$1" [R=301,L]
^Comment out the last 2 lines.

How many people does it take to screw in a lightbulb?
 
Status
Not open for further replies.
Back
Top