So I've decided to set up a forum as a resource for web developers to share code, trade thoughts on running a web development business, review client horror stories and more. Sort of a webmaster resource amongst friends. Yes there are many great webmaster resources, so why another one? For the experience I guess. The goal of a forum = simplicity for the end user. A client of mine recently brought me back to earth when she mentioned "Not all Internet users may be that web savvy".
Website Category
Comments (0) Posted on Monday, April 14th, 2008
Comments (1) Posted on Saturday, April 12th, 2008
Depending on your web host server, you may come across issues where your domain name re-writes itself to one without the 'www'.
A simple example would be:
http: //your-domain.com
that should be
http: //www.your-domain.com
How to correct this
Edit your .htaccess file with the following code:
[source]
Options +Includes
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.yours.com$ [NC]
RewriteRule ^(.*)$ http://www.yours.com/$1 [L,R=301]
[/source]
Great resource for .htaccess mod_rewrite
http://www.ilovejackdaniels.com/cheat-sheets/mod_rewrite-cheat-sheet/
Comments (0) Posted on Monday, April 14th, 2008
Comments (1) Posted on Saturday, April 12th, 2008
Depending on your web host server, you may come across issues where your domain name re-writes itself to one without the 'www'.
A simple example would be:
http: //your-domain.com
that should be
http: //www.your-domain.com
How to correct this
Edit your .htaccess file with the following code:
[source]
Options +Includes
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.yours.com$ [NC]
RewriteRule ^(.*)$ http://www.yours.com/$1 [L,R=301]
[/source]
Great resource for .htaccess mod_rewrite
http://www.ilovejackdaniels.com/cheat-sheets/mod_rewrite-cheat-sheet/
