The new and improved Kershaw/ZT Website! - Launching Nov.1

The new site looks awesome! I really like the filter function, as well as the little bubbles summarizing the knife features. Great job!
 
Like the site!, however I cannot get the warranty PDF to pull up, I get a 404 page not found error....
 
Looks like a web server config problem. The virtual host they have answering for "kershawknives.com" seems to be pointed at an empty/nonexistent directory. Try http://www.kaiusaltd.com or http://kershaw.kaiusaltd.com.

On the server side, looks like you're running Apache. Looks like the VirtualHost setting for the "www.kershawknives.com" server name is not configured right. Might look something like:
Code:
NameVirtualHost 173.247.253.181:80
<VirtualHost 173.247.253.181:80>
    ServerName www.kershawknives.com
    DocumentRoot "/some/directory/name"
    ... some other stuff ...
</VirtualHost>

You might make it something like this to automatically redirect folks (seems like you're already doing this for "ztknives.com" and "shuncutlery.com")
Code:
NameVirtualHost 173.247.253.181:80
<VirtualHost 173.247.253.181:80>
    ServerName www.kershawknives.com
    Redirect 301 / http://kershaw.kaiusaltd.com/
</VirtualHost>

I'm not sure how you have your web server configured, but looking at the symptoms, it seems the virtual host entry for "www.kershawknives.com" is the problem. Probably best to defer to your web guys.
 
Last edited:
I think I've browsed most of the site by now and I must say;WOW, excellent update! As Lynda mentioned there's still some quirks, but they are few. My only gripe so far would be the lack of the Skyline in the "Manual" folders section. Especially weird since the Skyline is used on Kershaw frontpage as a thumbnail and an example of a manual folder ;)
 
I think I've browsed most of the site by now and I must say;WOW, excellent update! As Lynda mentioned there's still some quirks, but they are few. My only gripe so far would be the lack of the Skyline in the "Manual" folders section. Especially weird since the Skyline is used on Kershaw frontpage as a thumbnail and an example of a manual folder ;)

Those are exactly the kind of quirks we want you to tell us about. Thanks for catching that. It should definitely be listed. I'll have them add it.
 
Back
Top