Archive for the ‘Website Design’ Category

Village Website Wins “Powered by WordPress” Tee

Saturday, December 4th, 2010

Powered by WordPress T-Shirt

Last month I entered the Village of Alanson website into a contest – for sites designed with WordPress. Well I’m pleased to say it was chosen as one of the five “coolest WordPress-powered sites” entered into the contest held over at WPShirts.com.

For those who have yet to hear about WPShirts, their purpose is to “promote and spread the use of WordPress as the premiere online software tool for blogs and websites it is… by giving away free WP shirts that get people asking and talking about all things WP.”

Thanks for the tee WPShirts, and thanks for helping make the WordPress community what it is… simply great!

Posted in Company Information, Website Design, Wordpress.

IE6 Will No Longer Be Supported

Thursday, February 11th, 2010

IE6 UnsupportedLast week Google announced that they will no longer be supporting Internet Explorer 6.

In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology. This includes faster JavaScript processing and new standards like HTML5. As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 ​as well as other older browsers that are not supported by their own manufacturers.

(more…)

Posted in Company Information, Website Design. ⋅ Tags: IE, Internet-Explorer, Website Design

Redirect Only Specific Files from HTTP to HTTPS

Sunday, January 27th, 2008

I had a hard time finding a solution to redirect only certain files from HTTP to the secure HTTPS. I found all kinds of ways to redirect the entire site to HTTPS but none for specific pages only. After a few hours tinkering I found a solution using the following code in a .htaccess file:

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^example.com [nc]
rewriterule ^(.*)$ http://www.example.com/$1 [r=301,nc]

rewritecond %{SERVER_PORT} !^443$
rewriterule ^filename\.php(.*)$ https://www.example.com/filename.php$1 [r=301]

The first part of the code redirects example.com to www.example.com as noted in an earlier post, “301″ Redirects for SEO. The second part then redirects a specific file (filename.php) from http to https. Thus the individual file “filename.php” can only be accesses using a SSL connection.

Posted in Website Design. ⋅ Tags: .htaccess, http, https, redirects, SSL

“301″ Redirects for SEO

Friday, January 4th, 2008

Search engines will often regard www.example.com and example.com as two different websites. Because of this, websites usually experience the effects of link fragmentation (inbound links point to both www.example.com and others to example.com). For example, if www.example.com has 5,000 inbound links and example.com has 2,500 inbound links you could potentially combine them so you have all 7,500 links pointing to www.example.com.

To do this you can setup a permanent “301″ redirect by creating a .htaccess file with the below code. This will ensure that all requests coming in to example.com will get redirected to www.example.com.

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^example.com [nc]
rewriterule ^(.*)$ http://www.example.com/$1 [r=301,nc]

Notes:

  • The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
  • REPLACE example.com and www.example.com with your actual domain name in the code above
  • This .htaccess redirection method only works on servers using the Apache Mod-Rewrite module

This “301″ redirect method is also a great way to save money on SSL certificates. When the site always points to www.example.com you only need to buy a single SSL certificate.

Posted in Website Design. ⋅ Tags: .htaccess, redirects, SEO, SSL

Older Posts »

About this Blog…

Hello, welcome to the “company” blog. Owned and operated by Matthew Ginop, MCGWD is a small website design company located in northern lower Michigan. I provide affordable sites using web standards and semantic markup.

Blog Post Categories