FULL STACK   ·   UI   ·   UX   ·   GRAPHICS   ·   DEVELOPER   ·   INSTRUCTOR

Adam Khoury

Donate funds to show love and support

Click the button below to donate funds securely online. You can use your PayPal account or a credit card.

Your donations help free up my time to produce more content and assist in covering server costs. It's also a great way to say thanks for the content!

Application Configuration

Adam will be adding options here soon.

Force www Into URL

Published :
Author :
Adam Khoury
In this quick web development tip we discuss the apache method of forcing script connection in case the www is missing from a URL that requires it for script connection and session handling. .htaccess RewriteEngine on # Make all requests have the www. in the URL RewriteCond %{HTTP_HOST} ^websitename\.com RewriteRule ^(.*)$ http://www.websitename.com/$1 [R=permanent,L]