Site-wide redirect

Hi,
Is there a way to do a site-wide redirect or something in the
administrator that will do this? We've created a new website and
want to redirect all the old web pages over to the new site
(without having to add a meta-refresh to thousands of pages in a
single day). I haven't found anything in the administrator that
will do this. Everything resides on the same server ex
http://example.com/oldsite/index.cfm
to
http://example.com/newsite/index.cfm
We do have some application.cfm and application.cfc files
that I thought we could add the meta -refresh tag to but that
barely takes care of 30% of the pages.
Any ideas?
Thanks, Wendy

wam4 wrote:
>
> Any ideas?
> Thanks, Wendy
>
If you want it to be server wide rather then page by page,
look at your
web server.
When we did this last year, we put re-direct directives into
our Apache
configuration file. I am sure there is an IIS equivalent if
that is
your server of choice.

Similar Messages

  • When I go to a particular website I selected the wrong thing on the login now every time I tried to go to that site it redirects me to my search menu

    When I go to a particular website I selected the wrong thing on the login now every time I tried to go to that site it redirects me to my search menu and can't find the site.
    this is the site i want to go to --- https://delphisso.am.joneslanglasalle.com/idp/startSSO.ping?PartnerSpId=360facilityprod
    And this is the site it redirects to --- https://support.mozilla.org/en-US/questions/new/desktop/other/form?search=When+I+go+to+a+particular+website+I+selected+the+wrong+thing+on+the+login+now+every+time+I+tried+to+go+to+that+site+it+redirects+me+to+my+search+menu+&step=aaq-question

    It sounds as if maybe you have just bookmarked the wrong thing.
    Probably the link you give in your post works if so use and bookmark that.
    If necessary clear cookies and cache and start again from
    * https://authn.joneslanglasalle.com
    See also
    * Reloading using Ctrl+F5 forces a reload without using the existing cache or see [[How to clear the Firefox cache]]
    * [[Delete cookies to remove the information websites have stored on your computer#w_delete-cookies-for-a-single-site]]_delete-cookies-for-a-single-site
    * If you have recorded the wrong login details you can force Firefox to ''forget'' about a site. But be careful it will lose also lose history and bookmarks for that site. <br /> [[Remove websites from the Awesome Bar suggestions#w_clearing-all-items-for-a-single-site]]_clearing-all-items-for-a-single-site

  • How do I selectivly allow site page redirection? If not available Can it be added? Thank you Bill

    I would like to allow selected web sites to redirect me but block all others. Is this function available? If not can it be added to the next update or some time soon?
    I presently use a site that refreshes automatically and I can also manually refresh. FF seems to block each refresh/redirect and the update does not show.
    Bill

    Why do you need to keep that warning enabled?
    * Firefox/Tools > Options > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"

  • Boy what a screw job when the program freezes in the middle of site wide fo

    Boy what a screw job when the program freezes in the middle of site wide folder name changes.
    Then you never know what did get changed or not until you wade thru every possible one.
    And you cant just redo change the folder name, cuz the folder name did change.
    Further, every attempt locks the program.
    lost on broken links...
    OK I'm talking about changing a folder name: ceaseless freezing
    OK Now when it does work, none of the
    AC_RunActiveContent.js
    updated.  What a mess
    DW CS3
    Mac OSX.4.11

    you can force quit the front-most application in Mac OS X v10.5 or later by pressing Command-Option-Shift-Esc for three seconds.

  • In dreamweaver site-wide query option file grayed out

    in dreamweaver site-wide query option file grayed out
    Why won't this button option work, I cannot get the site-wide query to highlight, please help anyone, thanks.

    You need to have a defined site in order for DW to correctly work with your files...
    http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/
    Once defined, you will always work from the Dreamweaver Files panel to ensure the program can manage your files correctly.

  • Changing font color site-wide??

    Hi,
    I am trying to change the color of my font and my links
    site-wide. Is there any easy way to do this?
    Thanks,
    David

    You would need to add those to a stylesheet that was linked
    to all the
    pages, not just in the head of a single document.... 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Virginia Carter" <[email protected]>
    wrote in message
    news:g2ui3m$sml$[email protected]..
    > Yep -- you can do this with CSS...
    >
    > If you want all your text to be red, then just add this
    to the head of the
    > document:
    >
    > <style type="text/css>
    >
    > body {color: #F00;}
    >
    > </style>
    >
    > Likewise, if you want all of your links to be white, you
    would add the
    > following:
    >
    > a {color: #FFFFFF;}
    >
    > Those will globally change your font color and link (a
    href) color
    > throughout your entire site, assuming you don't have any
    other CSS
    > anywhere...
    >
    > --
    > Virginia Carter
    > Carolina Web Creations
    > ======================
    > www.carolinawebcreations.biz
    >
    > David Way wrote:
    >> Hi,
    >>
    >> I am trying to change the color of my font and my
    links site-wide. Is
    >> there any easy way to do this?
    >>
    >> Thanks,
    >>
    >> David

  • HTTP status code returned by site-wide error handler is 200 OK?

    I'm using a developer install of ColdFusion 11. I set up the following page at http://localhost:8500/test/index.cfm:
    <cfthrow type="application" message="This is an error">
    When I visit that page, the HTTP status code returned is 500, as expected.
    I then created the following page at http://localhost:8500/error.cfm:
    <p>Sorry! That was an error.</p>
    If I set the site-wide error handler in the CF Admin to /error.cfm and visit /test/index.cfm, the HTTP status code returned is 200 OK.
    This seems weird to me. It looks like I can include the following in the error.cfm file to send an error code instead:
    <cfheader statuscode="500" statustext="Server Error">
    Does anyone see that as problematic? Is there a reason why the site-wide error handler should return 200 OK?

    Error Codes are the responsibility of the developer, to define and broadcast. Ultimately, the ColdFusion server has acted appropriately and fulfilled the request (hence the 202). Only the code would know what error was truly thrown, and how to appropriately handle that message to the user, hence the need for you to change the header in the response, if you want that broadcast to the browser in anything of than a "successful request" type of status.

  • Cf8/9 - Best method for a site wide pop-up?

    I'm curious what developers here use for a site wide pop-up? cfwindow looks like a good option because of the the modal option. I'm looking to pass in a few values to the pop-up window and call it from anywhere in my site. Does anyone have any examples of how they've implemented something like this?

    Sounds no different than site wide images, stylesheets, function libraries, or other such things.  Create a folder in the web root and put the template there.  Then use absolute addressing when calling it.

  • Template: Adding Site Wide Code To Editable Region

    I have a template
    I have an editable region called content
    I would now like to add a navigation bar within the editable region, so that it can be managed from the Template and thereon aplies to the child pages
    Q:
    How do I insert a site wide section within an editable region, which is only edited via the template, so that I can set up my navigation bar?
    woolf

    So, here's a sample page: http://www.gravenimagedesign.net/levnav/
    Here's the template code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    #header {
         background-color: #333;
         height: 200px;
         width: 800px;
         position: relative;
         margin: 0 auto;
    #header h1 {
         color: white;
    #content {
         background-color: #FFC;
         height: 500px;
         width: 800px;
         margin: 0 auto;
         border: 1px solid red;
         position: relative;
    #content h1 {
         color: red;
         text-align: center;
    #apDiv1 {
         position:absolute;
         width:663px;
         height:115px;
         z-index:1;
         left: 63px;
         top: 438px;
         background-color: #FCF;
    -->
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body>
         <div id="header"><!--begin header-->
           <h1>This header div is position: relative;</h1>
           <div id="apDiv1">
             <ul id="MenuBar1" class="MenuBarHorizontal">
               <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
                 <ul>
                   <li><a href="#">Item 1.1</a></li>
                   <li><a href="#">Item 1.2</a></li>
                   <li><a href="#">Item 1.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 2</a></li>
               <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
                 <ul>
                   <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                     <ul>
                       <li><a href="#">Item 3.1.1</a></li>
                       <li><a href="#">Item 3.1.2</a></li>
                    </ul>
                  </li>
                   <li><a href="#">Item 3.2</a></li>
                   <li><a href="#">Item 3.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 4</a></li>
            </ul>
             <p><br />
            This menu bar is <strong>position: absolute;</strong></p>
             <p>It is  nested in the code inside the &quot;header&quot; div (the dark grey one), which is positioned &quot;relative.&quot;</p>
          </div>
         </div><!--end header-->
         <div id="content">
           <!--begin content-->
           <!-- TemplateBeginEditable name="EditRegion3" -->
           <h1>This text (really an h1) is appearing within the div with id of "content"</h1>
           <!-- TemplateEndEditable --></div>
         <!--end content-->
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
        </script>
    </body>
    </html>
    And here's a child page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/maintemplate.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    #header {
         background-color: #333;
         height: 200px;
         width: 800px;
         position: relative;
         margin: 0 auto;
    #header h1 {
         color: white;
    #content {
         background-color: #FFC;
         height: 500px;
         width: 800px;
         margin: 0 auto;
         border: 1px solid red;
         position: relative;
    #content h1 {
         color: red;
         text-align: center;
    #apDiv1 {
         position:absolute;
         width:663px;
         height:115px;
         z-index:1;
         left: 63px;
         top: 438px;
         background-color: #FCF;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body>
         <div id="header"><!--begin header-->
           <h1>This header div is position: relative;</h1>
           <div id="apDiv1">
             <ul id="MenuBar1" class="MenuBarHorizontal">
               <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
                 <ul>
                   <li><a href="#">Item 1.1</a></li>
                   <li><a href="#">Item 1.2</a></li>
                   <li><a href="#">Item 1.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 2</a></li>
               <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
                 <ul>
                   <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                     <ul>
                       <li><a href="#">Item 3.1.1</a></li>
                       <li><a href="#">Item 3.1.2</a></li>
                    </ul>
                  </li>
                   <li><a href="#">Item 3.2</a></li>
                   <li><a href="#">Item 3.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 4</a></li>
            </ul>
             <p><br />
            This menu bar is <strong>position: absolute;</strong></p>
             <p>It is  nested in the code inside the &quot;header&quot; div (the dark grey one), which is positioned &quot;relative.&quot;</p>
          </div>
         </div><!--end header-->
         <div id="content">
           <!--begin content-->
           <!-- InstanceBeginEditable name="EditRegion3" -->
           <h1>This text (really an h1) is appearing within the div with id of &quot;content&quot;</h1>
           <!-- InstanceEndEditable --></div>
         <!--end content-->
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
        </script>
    </body>
    <!-- InstanceEnd --></html>
    I arbitrarily positioned the nav in the middle of the action. You can play with its positioning, but remember that it is positioned "absolutely" from the left and top of the "header" div. (in this case)
    If this is unclear, let me know! By the way, the CSS is in the head of the Template, and the child page, but I didn't print out the other auxiliary files, which you will get automatically if you insert a SpryMenuBar. But the sample on my site will work...
    Beth

  • ANN: Site-Wide Management in Dreamweaver Tutorial Series

    http://www.projectseven.com/products/menusystems/pmm3/tutorials/site-wide/
    Dreamweaver Templates, Library Items and Server-Side Includes allow you to manage repeating sections of your web pages in a central file. This series of tutorials listed below will help you to deploy your Pop Menu Magic 3 menu using any of these methods. They will also serve as a general foundation in understanding the most popular site-wide techniques deployable in a Dreamweaver-managed site.
    The tutorials are relevant for Dreamweaver versions MX2004 up to and including Dreamweaver Creative Cloud.
    Al Sparber - PVII
    Responsive Dreamweaver Menus | Galleries | Widgets
    Since 1998

    Unfortuantely sourcelabs.com does not give the option of testing IE11 on windows 7 so I cant be of much help here.
    One thing you might want to try is floating the <li> tags - add the below to your css stylesheet.
    li {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 20%;
    David Powers is pretty good when it comes to his tutorials and they are usually thoroughly tested. As I say in a simulated windows 8.1 envrionment in IE11 the nav looks fine BUT of course its better to test in the real thing.
    EDITED: Try the below combination of css if you have no success finding a solution:
    #mainnav ul {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
    #mainnav li {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
        float: left;
        width: 20%;
         background-color: #4D4D4D;
         text-align: center;
    #mainnav a {
        display: block;
        width: 100%;
        background-color: #4D4D4D;
        color: #FFFFFF;
        text-transform: uppercase;
        padding-top: 6px;
        padding-bottom: 6px;

  • Site-wide media query file

    Let's say one has a style sheet for detail pages on one's website, say "detail.css", designed for desktop monitors.
      Now one creates a sitewide media query file, e.g., mq-detail.css
    which looks like this to refer to the tablet and phone style sheets:
    /* detail-tablet */
    @import url("detail-tab.css") only screen and (min-width:321px) and (max-width:768px);
    /* detail-phone */
    @import url("detail-phone.css") only screen and (max-width:320px);
    Then how does one refer to the desktop style sheet? If I simply use "detail.css" with a minimum width of 769px, then some browsers like IE8 will not reference any style sheet.
    Would this line in mq-detail.css   work:
    <!--[if lt IE 9]
    <link href="style_sheets/detail.css" rel="stylesheet" media="screen">
    <!endif]-->
    If the screen width is >768 px, will "detail.css" be used for all browsers: that is the goal.

    cma cma wrote:
    I understand the concept but it is unclear how to implement it. In what files does one put these two  lines?
    <link rel="stylesheet" href="css/global.css" type="text/css" media="screen"/>
    <link rel="stylesheet" href="css/mobile.css" type="text/css" media="screen"/>
    The links above go on every page of my site as they are needed. The global.css for desktop AND mobile. The mobile.css contains the media queries css which are used to change the css in the global.css file specifically for mobile devices.
    cma cma wrote:
    David Powers' excellent tutorial talks about a number of mobile query issues but he does not discuss using the Site-wide media query file. Do you and Nancy dispense with that step and put all your media queries and CSS links in every html page?
    There isn't any site wide media query file. That would be just a general css file that both  desktop and mobile share, in my view. You only change what is necessary for mobile devices in a dedicated media queries file or you can include them in the general css file.
    cma cma wrote:
    He also says:
    To ensure a level playing field with all devices that support media queries, just add the following line to the <head> of each web page:   #
    <meta name="viewport" content="width=device-width, initial-scale=1">
    Yes, that line of code needs to be present on all the website pages.
    cma cma wrote:
    Then Mr. Powers says to use "only"
    media="only screen and (min-width: 401px) and (max-width: 600px)"
    Havent read through the tutorial so can't really comment on that one only to say everyone has slightly different approaches to building pages. I tend to look at my design and see where it starts to break down then use media query break points based on that rather than any view port width.
    cma cma wrote:
    and finally:
    use an Internet Explorer conditional comment to serve a special set of rules to older versions of IE like this:   #
    <!--[if lt IE 9 & !IEMobile]> <link href="iestyles.css" rel="stylesheet" type="text/css"> <![endif]-->
    You can use an IE conditional comment IF that is whats needed to get IE8 to work with your design....depends what css you are using. The more advanced techniques will not work in older browsers.

  • Site Wide Media Query option is ghosted

    Hello,
    I am new to Dreamweaver CS6 and I am trying to set up media queries for my website design.
    When I got to Modify>Media Queries> the dialog box has the option for either "Site Weide" or  "This Document". However the "Site Wide" option is ghosted and I can't select it. I have tried a variety of different HTML documents (HTML 4 and HTML 5) but nothing works.
    Can anyone help me solve this problem?
    Thank You.

    Have you defined your site in DW? You should do that in order for 'Site-Wide' media-query to work. Here's a walkthrough that you can follow to define your site in DW: http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/
    Yes - the video is for CS5 and 5.5. But it is no different to CS6 too!

  • Is there a site-wide title tag that I can edit or are the title tags specific to each individual page?

    Is there a site-wide title tag that I can edit or are the title tags specific to each individual page?  I'm working on my title tags for Destination West at http://xibuhaohua.com and as you can see, it is in Chinese here as 西部豪华 but it's English here at Destination West.  So, I'd like to know if I can edit each separately because I think they should be in different languages.

    You can set the title for each page in the Page Properties dialog.
    Note that on a master page, you can set a page title prefix or suffix if you'd like all your pages using that master to share a title prefix or suffix.

  • DreamWeaver CS3 - How to excute a site wide change...

    I am using Dreamweaver (DW) CS3. I have updated a few pages
    which had the ending of .HTM. After the modification to the pages
    the ending of the file names were changed to .ASP. The pages work
    well in their test environment.
    OK, so the pages were known by the site with the file name
    extension of .HTM
    The file name extension is now .ASP
    How do I update very page in the site so that they no longer
    look for the old file name but the
    new name, which ends with the extension of .ASP?
    Thanks!
    Happy New Year!

    I would also suggest that you never rename your files like
    this outside of
    DW. By renaming them in DW's File panel, you allow DW to
    manage the links
    automatically.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "martcol" <[email protected]> wrote in
    message
    news:gjg0k4$nrk$[email protected]..
    > DW comes with a very sophisticated Find & Replace
    tool that would do what
    > you
    > want
    >
    >
    http://tinyurl.com/97cknp
    >
    > It also has a tool for checking broken links
    >
    >
    http://tinyurl.com/7aegnq
    >
    > I would suggest that before you make site-wide changes
    you back it up
    > somewhere.
    >

  • Enable Automatic site-wide client push installation

    Hi,
    We are configuring sccm 2012 next to sccm 2007. We want to push SCCM 2007 clients automatically to pc's in a certain OU. Can this be done via "Enable Automatic site-wide client push installation".
    So will it deploy to only the discovered devices in this OU we configured to discover or really install site wide (probably not but need to be sure)?
    J.
    Jan Hoedt

    Automatic client push will initiate a push to all devices that are discovered (where client = 0) and that are assigned to the site (-> boundaries).
    Torsten Meringer | http://www.mssccmfaq.de

Maybe you are looking for