Posts Tagged ‘tip’

Custom 404 Error Page Tutorial: .htaccess file tip for PHP MySQL Site

ErrorDocument 404 /filenotfound.php Little handy .htaccess file tip for all you guys creating dynamic websites on Apache, PHP, MySQL, etc… Create and design your own custom 404 missing document pages.

Custom 404 Error Page Tutorial: .htaccess file tip for PHP MySQL Site

ErrorDocument 404 /filenotfound.php Little handy .htaccess file tip for all you guys creating dynamic websites on Apache, PHP, MySQL, etc… Create and design your own custom 404 missing document pages.

.htaccess tip – Force www. in dynamic php mysql flash web site tutorial

Here is the code to copy and paste # Make all requests have the www. in them RewriteEngine on RewriteCond %{HTTP_HOST} ^websitename\.com RewriteRule ^(.*)$ www.websitename.com [R=permanent,L] In this quick web development tip Adam Khoury of Flash Building discusses the apache method of forcing script connection in case the www is missing from a URL that requires it for script connection.