RE: Eliminating .cfm extensions in SES

2007-03-19 Thread Doug Brown
http://cheeso.members.winisp.net/IIRF.aspx





-Original Message-
From: james carberry [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 2:10 PM
To: CF-Talk
Subject: Re: Eliminating .cfm extensions in SES

>Yes, you would need to use url rewriting, either through apache with
>mod_rewrite, one of the third party plugins for IIS, or a custom 404
handler
>for cf. 
>
>Russ
>
>>

Can you recommend any of these 3rd Party IIS plug ins? Thanks! -j



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273042
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Eliminating .cfm extensions in SES

2007-03-19 Thread Rick Root
On 3/19/07, james carberry <[EMAIL PROTECTED]> wrote:
>
>
> What I want to achieve is the same result, but without having to "give
> away" that the page I am calling is CF by avoiding the telltale ".cfm" in
> the above example. So, it would be
> http://www.myweb.com/targetpage/variable1/parameter1  wherein "targetpage"
> is really a .cfm file.


Just out of curiousity, *WHY* do you want to do that?  Do you think it will
improve search engine rankings (it won't) or do you just not want anyone to
know you're running coldfusion (anyone who really wants to know can probably
find out)

Rick

-- 
> CFMBB - Coldfusion Message Boards, Version 1.21 Now Available!
> http://www.cfmbb.org


~|
ColdFusion MX7 by AdobeĀ®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273041
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Eliminating .cfm extensions in SES

2007-03-19 Thread james carberry
>Yes, you would need to use url rewriting, either through apache with
>mod_rewrite, one of the third party plugins for IIS, or a custom 404 handler
>for cf. 
>
>Russ
>
>>

Can you recommend any of these 3rd Party IIS plug ins? Thanks! -j

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273034
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Eliminating .cfm extensions in SES

2007-03-19 Thread Barney Boisvert
You bet, use a real URL rewriting solution from your web server,
instead of using a CF-based solution with CGI.PATH_INFO.  mod_rewrite
is the 800 LBS gorilla in the arena, and if you're not running Apache
HTTPD, there are similar tools available for other web servers.

Just keep in mind that SES urls are of benefit because you have
meaningful information in the URL, not because the ? and & are
missing.  If you're just chopping those out, it's not going to make a
difference.  You need to create keyword-rich URLs.

For example 'domain.com/product.cfm?id=342' and
'domain.com/product/id/342' are going to be identical in performance
with search engines.  `domain.com/product/342` will perform similarly
poorly.  On the other hand,
'domain.com/product/MyNeatRemoteControlCar/342' will perform much
better because of the keywords.  'domain.com/MyNeatRemoteControlCar`
will perform best of all.

Standard caveats about contrived examples apply, but you get the idea.

cheers,
barneyb

On 3/19/07, james carberry <[EMAIL PROTECTED]> wrote:
> I am on a quest to figure out a more "seamless" approach to Search Engine 
> Safe (SES) URL's with ColdFusion. Several solutions I have seen achieve SES 
> using a URL like http://www.myweb.com/targetpage.cfm/variable1/parameter1
>
> What I want to achieve is the same result, but without having to "give away" 
> that the page I am calling is CF by avoiding the telltale ".cfm" in the above 
> example. So, it would be http://www.myweb.com/targetpage/variable1/parameter1 
>  wherein "targetpage" is really a .cfm file.
>
> Is there any way to achieve this? Thx!
>

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273033
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Eliminating .cfm extensions in SES

2007-03-19 Thread Russ
Yes, you would need to use url rewriting, either through apache with
mod_rewrite, one of the third party plugins for IIS, or a custom 404 handler
for cf. 

Russ

> -Original Message-
> From: james carberry [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 19, 2007 4:00 PM
> To: CF-Talk
> Subject: Eliminating .cfm extensions in SES
> 
> I am on a quest to figure out a more "seamless" approach to Search Engine
> Safe (SES) URL's with ColdFusion. Several solutions I have seen achieve
> SES using a URL like
> http://www.myweb.com/targetpage.cfm/variable1/parameter1
> 
> What I want to achieve is the same result, but without having to "give
> away" that the page I am calling is CF by avoiding the telltale ".cfm" in
> the above example. So, it would be
> http://www.myweb.com/targetpage/variable1/parameter1  wherein "targetpage"
> is really a .cfm file.
> 
> Is there any way to achieve this? Thx!
> 
> 

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273032
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4