About Katz Web Services
Katz Web Services is a web development company operated by Zack Katz.
-
Plugin Support Topics
Popular Posts
- Simple Vertical Align Plugin for jQuery
- How to Create a Custom RSS Feed in WordPress in 12 Lines of Code
- Contact Form 7 Modules - A Plugin
- iContact Widget for WordPress
- Gravity Forms Shortcode Explained
- Kick SEO Ass with SEO WordSpinner Plugin for WordPress
- Weather Forecasts for WordPress - WP Wunderground Plugin
- jQuery validator annoyances
Tag Cloud
Marketing WordPress Plugins Javascript Web Design Interspire Development WP Plugins WordPress Development Links Search Engine Optimization Optimization Design SEO Nofollow WordPress WordPress SEO Plugin Shopping Cart Denver Blogging Google SEO eCommerce Denver SEO CSS Domains Interspire Shopping Cart Google Search Code Website Redesign Functions.php
Tag Archives: ColdFusion
Redirect a Website in ColdFusion – Add www. or Move to New Domain
Redirecting a website in ColdFusion (.CFM)
I have been working on a ColdFusion website, and I wanted to find a way to require ‘www.’ in the URL (to consolidate all pages on www. for SEO). I normally work with PHP and Apache servers, so I’m used to .htaccess. I knew there had to be a way.
Here’s a simple method of redirecting a whole website in ColdFusion:
<!-- If the site isn't www... -->
<cfif (CGI.SERVER_NAME NEQ "www.example.com")>
<!-- Save the URL (and $_GET variables too) as the string 'strUrl' -->
<cfset strUrl = CGI.script_name & "?" & CGI.query_string />
<!-- Use 301 for SEO-friendly redirects -->
<cfheader statuscode="301" statustext="Moved permanently">
<!-- Redirect to new website (this case, added www.) with strUrl added on -->
<cfheader name="Location" value="http://www.example.com#strUrl#">
</cfif>
Posted in Tutorial, Web Development
Tagged 301 Redirect, ColdFusion, htaccess, Redirects, SEO Redirect, WWW
1 Comment