Menu Editing for 1000 or so pages?

Discussion in 'HTML & Website Design' started by dtadpole, Aug 24, 2008.

  1. #1
    I have hand built a thousand or so pages and each page has a menu that links to all the other pages in the website. I am curious what others use to edit there menus more easily. I am tired of when I make a change I have to go through the whole website and copy the menu to each .html . thanks for the suggestions in advance. :eek:
     
    dtadpole, Aug 24, 2008 IP
  2. seohyderabad

    seohyderabad Peon

    Messages:
    1,190
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #2
    using i dreamwaever u can do find replace (pm me your sample code so i can give you exact shortcut) or use php include (in php files only)
     
    seohyderabad, Aug 24, 2008 IP
  3. dtadpole

    dtadpole Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I never thought about using dreamweaver! In loading my pages up with dreamweaver will it alter my code with any crappy code? Also would it take much to change all my pages over to php? Also 1 more ? will php includes hurt my SEO?
     
    dtadpole, Aug 24, 2008 IP
  4. Dogs_and_things

    Dogs_and_things Active Member

    Messages:
    97
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #4
    You don´t have to change all your pages over to php. You can do php includes on html pages too.
    And no, php include don´t hurt your SEO at all. With the amount of pages you have, the only sensible thing to do is to make a menu-html that contains your menu and do a php include on all your pages. This way you only have to edit one file, menu.html, to update your site´s menu.

    If php includes don't work on your .html pages you can add a rule to your .htaccess file to tell your server to make php includes work. It's very easy to do.

    You can also find mass find and replace text editors like Text Workbench that do a good job.
     
    Dogs_and_things, Aug 25, 2008 IP
  5. seohyderabad

    seohyderabad Peon

    Messages:
    1,190
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #5
    can u tell me how to do this
     
    seohyderabad, Aug 25, 2008 IP
  6. Dogs_and_things

    Dogs_and_things Active Member

    Messages:
    97
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #6
    On the first line of your .htaccess, write:
    AddType application/x-httpd-php .htm .html
    Code (markup):
    :)
     
    Dogs_and_things, Aug 25, 2008 IP