Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Change URL Address?

    Hello, we are developing our website for Search Engine Optimization. Part of
    our strategy involves using key search words in the URL addresses. We want to
    change the URL addresses for each sub page of our website. Our website was done
    in Cold Fusion. How can we change the URL addresses? If anyone wants info on
    how to set up your site to get placed high in Google, etc. I will gladly
    exchange that information for an answer to this question. Thank you.

    John

    jpedo Guest

  2. Similar Questions and Discussions

    1. Change page address?
      Is there a way to change a page's address on the server and consequently all links to that page in one action?
    2. Change e-mail address
      How do I change my e-mail address for these forums? I didn't see it in my options.
    3. Change MAC address of LAN card in rc.conf. How?
      Hi, I'm running 5.3 STABLE. I need to change the MAC address of my PC. I know it can be done like this: ifconfig rl0 ether...
    4. How to change MAC address under hp-ux 10.2?
      Hi, is it possible to change the MAC address of a NIC under hp-ux 10.2? Ifconfig does not have the required option. Thanks for any hints ...
    5. cant get my IP address to change
      I have recently lost my connection with the internet trough my cable modem. So i figurd it was the modem so i bought a new one and installed it.Its...
  3. #2

    Default Re: Change URL Address?

    Since you have not disclosed enough information (IMHO) to describe your SEO
    approach, I can only offer a guess. A URL is made up, in general, of a domain
    name, a directory path, a filename and a possibly a query string.

    In general, you can either hard code the URL like you do with HTML or pull
    part or all of the URL from a database. In the latter case, you would
    dynamically create the link. See code below.

    If you deem this reply sufficient, please post your SEO optimization strategy
    to this forum.



    <CFQUERY NAME="myQuery" ... >
    SELECT myURL FROM myTable WHERE ...
    </CFQUERY>

    <CFOUTPUT>
    <A HREF="#myQuery.myURL#">Click here</A>
    </CFOUTPUT>

    jdeline Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139