|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Jul 2001
Location: See sig
Posts: 6,989
|
.htaccess Code To Insert Missing WWW
Anyone have some working htaccess code to add the www to a url? The one I have gets pissy with a script I'm trying to setup and I can't find the alternative version I had which should work.
Thanks. |
|
|
|
|
|
#2 |
|
Confirmed User
Join Date: Jan 2005
Posts: 1,648
|
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.com
RewriteRule (.*) http://www.domain.com/$1 [R=permanent,L]
|
|
|
|
|
|
#3 | |
|
Confirmed User
Join Date: Jul 2001
Location: See sig
Posts: 6,989
|
Quote:
That's what I have and it gets a little pissy with a script I have. I'm sure I've seen another way of doing it and even saved it but can't find it now Thanks for the reply though. |
|
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Aug 2003
Location: vanuatu
Posts: 1,989
|
Are we talking about redirecting the root to the www.alias?
This is what I use Options +FollowSymLinks -Indexes RewriteEngine on RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent,L] |
|
|
|