|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
coldfusion example?
hello
I wanted to inquire to see if anyone had an example site map for an entirely coldfusion web site. thanks aaron |
|
#2
|
|||
|
|||
|
depends on how your site is structured, and if you're using a database to generate all your pages etc
you would do something like this: <cfquery name="getPages" datasource="myDatasource"> SELECT * FROM pages WHERE status = 1 ORDER BY sortorder </cfquery> <cfoutput query="getPages"> <a href="index.cfm?pageID=#getPages.pageID#">#getPages.pageName#</a> </cfoutput> Last edited by Noodles : June 29th, 2003 at 04:37 PM. |
|
#3
|
|||
|
|||
|
would that site map be easily spiderable by search engine spiders?
|
|
#4
|
|||
|
|||
|
sure, it just generates links with the page name as the link text
I use a similar sitemap for my sites www.cortex7.com/sitemap/ |
|
#5
|
||||
|
||||
|
Hi,
here is an german cf-sitemap http://www.schiclub-neuhofen.at/mai...ion/sitemap.cfm it's dynamicly created - if there is a new link in the cms, the sitemap updates itself. :-) it's very easy to make a sitemap like this. cu Innuendo |
![]() |
| Viewing: SEO Chat Forums > Other > SEO Scripts > coldfusion example? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|