0
Extract after '#' in URL + Flash SEO
New Here
,
/t5/coldfusion-discussions/extract-after-in-url-flash-seo/td-p/324562
Mar 23, 2009
Mar 23, 2009
Copy link to clipboard
Copied
Hi everyone,
I have a question regarding the hash (#) in the URL in our Flash website. We created a website, full-flash, with a back-end in coldfusion. We used SWF deeplinking so when somebody clicks on a button the title and URL of the page changes.
Now we put some HTML content on the website that isn't visible to users who have flash installed but I guess Google doesn't search the Flash but the html-content instead. We would like to optimise each seperate page with it's own unique HTML-content, but to achieve that we need to get the data from the current URL or page-title.
Example: http://www.website.com/#/products/shirts/ links directly to the correct page inside the flash-website, how can I get the 'products/shirts/' part extracted from the URL to use in coldfusion?
That way we could build unique content for the html-version of the website which "normal" users don't see but Google does.
Any other tips regarding Flash + Coldfusion + SEO are highly appreciated.
Thanks in advance,
Kind regards,
Wouter
I have a question regarding the hash (#) in the URL in our Flash website. We created a website, full-flash, with a back-end in coldfusion. We used SWF deeplinking so when somebody clicks on a button the title and URL of the page changes.
Now we put some HTML content on the website that isn't visible to users who have flash installed but I guess Google doesn't search the Flash but the html-content instead. We would like to optimise each seperate page with it's own unique HTML-content, but to achieve that we need to get the data from the current URL or page-title.
Example: http://www.website.com/#/products/shirts/ links directly to the correct page inside the flash-website, how can I get the 'products/shirts/' part extracted from the URL to use in coldfusion?
That way we could build unique content for the html-version of the website which "normal" users don't see but Google does.
Any other tips regarding Flash + Coldfusion + SEO are highly appreciated.
Thanks in advance,
Kind regards,
Wouter
TOPICS
Advanced techniques
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/coldfusion-discussions/extract-after-in-url-flash-seo/m-p/324563#M29330
Mar 23, 2009
Mar 23, 2009
Copy link to clipboard
Copied
ListRest()
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
WouterDB
AUTHOR
New Here
,
/t5/coldfusion-discussions/extract-after-in-url-flash-seo/m-p/324564#M29331
Mar 31, 2009
Mar 31, 2009
Copy link to clipboard
Copied
I don't think "ListRest()" has anything to do with this...
anybody else?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
New Here
,
/t5/coldfusion-discussions/extract-after-in-url-flash-seo/m-p/324565#M29332
Mar 31, 2009
Mar 31, 2009
Copy link to clipboard
Copied
You want to use this in Cold Fusion correct? If so, then off
the top of my head I'd try the getToken() function, assuming your
reading the url element then I'd do it like this ...
Hope this helps you out
Hope this helps you out
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/coldfusion-discussions/extract-after-in-url-flash-seo/m-p/324566#M29333
Apr 01, 2009
Apr 01, 2009
Copy link to clipboard
Copied
irCfmxUser wrote:
> You want to use this in Cold Fusion correct? If so, then off the top of my head
> I'd try the getToken() function, assuming your reading the url element then I'd
> do it like this ...
>
> Hope this helps you out
>
> <cfscript>
> var strForGoogle = "";
> strForGoogle = getToken(cgi.SCRIPT_NAME, 2, "#");
> </cfscript>
It will not work as the part after # is not sent to the server.
--
Mack
> You want to use this in Cold Fusion correct? If so, then off the top of my head
> I'd try the getToken() function, assuming your reading the url element then I'd
> do it like this ...
>
> Hope this helps you out
>
> <cfscript>
> var strForGoogle = "";
> strForGoogle = getToken(cgi.SCRIPT_NAME, 2, "#");
> </cfscript>
It will not work as the part after # is not sent to the server.
--
Mack
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
WouterDB
AUTHOR
New Here
,
LATEST
/t5/coldfusion-discussions/extract-after-in-url-flash-seo/m-p/324567#M29334
Apr 02, 2009
Apr 02, 2009
Copy link to clipboard
Copied
Is there any other way then? The thing is, we developed a
Flash website and via SWFADRESS we create links who link directly
to the correct page in Flash, now when these links get indexed by
Google it will only see the HTML content on that page so we would
have dozens of pages with the same HTML content. That's why we
would like to generate the html content based on the page the user
is currently on (f.e:
http://www.website.com/#/products/product01/)
Any ideas?
Thanks.
Any ideas?
Thanks.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

