What is the best way to deal with the pages being removed from the site in British Colombia?

A customer wants a page removed from their Web site; What is the best way to go about removing/deleting a page in British Colombia and keep all attributed to the laid-off page SEO ranking?

Should I delete the page and then add URL redirect via the module to redirect BC a relevant page.

or

I have to keep the page alive but 301 redirect using the property of the redirection page 301 in addition to Options?

One is better than the other?

Redirect via the page is there if you want to keep the page for any reason content wise, etc. in the admin. Web site wise is no different. A 301 redirect is a redirect 301 Grant, there is no difference.

Tags: Business Catalyst

Similar Questions

  • the best way to deal with the changed values maskMode?

    Hi people

    I just found out that the values listed for maskModes have changed between CC14 and CC15 who broke most of my scripts of masking.

    IE MaskMode.ADD in CC14 has the value 6413 but CC15 is 6813.

    What is the best way to deal with this? is there a simple solution or what I need to check the version of AE which is used and adjust from there?

    is there a direct way to access the name ie "MaskMode.ADD" instead of the value?

    Thanks... /JL

    To get the string maskMode by the current mask, you can loop through all the values possible maskmodes and stop when you click on:

    for (var k in MaskMode){
        if (myMask.maskMode === MaskMode[k]) break;
        };
    // at this stage k is the maskMode string (eg: "ADD")
    

    Xavier

  • What is the best way to deal with a 'Implicit coercion' in a table to a sprite?

    Hi all!

    With the continued support of this forum, I'm getting closer to have a programme of work. I can't wait to be able to help others like me once I've finished learning the ropes of AS3.

    I'll briefly explain what I want to achieve and then followed with my question.

    Background

    I created a random number of 12 x 9 grid that fills each cell with an image, based on the numeric value of each cell. I also have a random play button that makes random numbers in the grid. The problem I am running became my click event of button to erase the current images off the grid in order to allocate the new (for example by removing the objects display battery in order to place the new ones in the same places).

    Question

    My question is this: what is the best way to manage an implicit constraint from a table to a sprite? I pasted my complete code below so that you can see how the functions are supposed to work together. My sentence is apparently not being able to use a value from array with a sprite (sprite represents the real layout of the grid on the pile of display while the table starts as a number that is assigned an image that must be transmitted to the sprite).

    ============================================================================

    package
    {
    import flash.display.MovieClip;
    import flash.display.DisplayObject;
    import flash.events.MouseEvent;
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFormat;
    import flash.utils.getDefinitionByName;

    SerializableAttribute public class extends MovieClip Blanko
    {
    Contains 12 * 9 grid of cells.
    var grid: Sprite;
    Maintains the shuffle button.
    var shuffleButton:Sprite;
    Is equal to 12 columns, 9 lines.
    var cols: int = 12;
    lines of the var: int = 9;
    Equal number of grid cells (108).
    cells var: int = COL * rows;
    Sets of cell width and height to 40 pixels.
    var cellW:int = 40;
    var cellH:int = 40;
    Contains 108 images of cell.
    var imageArray:Array = [];
    Contains 108 numerical values for the cells in the grid.
    var cellNumbers:Array = [];

    Constructor calls the functions "generateGrid" and "makeShuffleButton".
    public void Blanko()
    {
    generateGrid();
    makeShuffleButton();
    }

    Creates and displays the grid 12 * 9.
    private function generateGrid (): void
    {
    grid = new Sprite;
    var i: int = 0;


    for (i = 0; i < cells; i ++)
    {
    cellNumbers.push (i % 9 + 1);
    }
    trace ("before shuffle:", cellNumbers);
    shuffleCells (cellNumbers);
    trace ("after shuffle:", cellNumbers);
    var _cell:Sprite;

    for (i = 0; i < cells; i ++)
    {

    / / This line is where the implicit constraint occurs. '_cell' is a leprechaun trying

    on a temporary basis equal to a value from array.
    _cell = drawCells (cellNumbers [i]);
    _cell.x = (I % cols) * cellW;
    _cell.y = (I / COL) * cellH;

    grid.addChild (_cell);
    }
    }

    Creates a "shuffle" button and adds a mouse click event.
    private function makeShuffleButton (): void
    {
    var _label:TextField = new TextField();
    _label. AutoSize = 'center ';
    TextField (_label) .multiline = TextField (_label) .wordWrap = false;
    TextField (_label) .defaultTextFormat is new TextFormat ("Arial", 11, 0xFFFFFF, "bold");.
    _label. Text = "SHUFFLE";
    _label.x = 4;
    _label.y = 2;
    shuffleButton = new Sprite();
    shuffleButton.graphics.beginFill (0 x 484848);
    shuffleButton.graphics.drawRoundRect (0, 0, _label.width + _label.x * 2, _label.height +)
    _label.y * 2, 10);
    shuffleButton.addChild (_label);
    shuffleButton.buttonMode = shuffleButton.useHandCursor = true;
    shuffleButton.mouseChildren = false;
    shuffleButton.x = grid.x + 30 + grid.width - shuffleButton.width;
    shuffleButton.y = grid.y + grid.height + 10;
    this.addChild (shuffleButton);
    shuffleButton.addEventListener (MouseEvent.CLICK, onShuffleButtonClick);
    }

    Erase the images of the cell, mix of their numbers and then assigned these new images.
    private function onShuffleButtonClick (): void
    {
    eraseCells();
    shuffleCells (cellNumbers);
    trace ("after shuffle:", cellNumbers);


    for (var i: int = 0; i < cells; i ++)
    {
    drawCells (cellNumbers [i]);
    }
    }

    Deletes any existing cells in the battery of the display image.
    private void eraseCells(): void
    {
    While (imageArray.numChildren > 0)
    {
    imageArray.removeChildAt (0);
    }
    }

    Changes cell phones numbers (makes random table).
    private void shuffleCells(_array:Array):void
    {
    var _number:int = 0;
    var _a:int = 0;
    var _b:int = 0;
    var _rand:int = 0;

    for (var i: int = _array.length - 1; i > 0; i-)
    {
    _rand = Math.Random () * (i - 1);
    _A = _array [i];
    _B = _array [_rand];
    _ARRAY [i] = _b;
    [_Rand] _ARRAY = _a;
    }
    }

    Retrieves and sets a custom image to a cell based on its numerical value.
    private void drawCells(_numeral:int):Array
    {
    var _classRef: Class = Class (getDefinitionByName ("skin" + _numeral));
    _classRef.x = 30;
    imageArray.push (_classRef);
    imageArray.addChild (_classRef);
    return of demonstration;
    }
    }
    }

    ===========================================================================

    Any help with this is greatly appreciated. Thank you!

    If you want to have an array of Sprites that you later clear that is fine. But this does not mean that your function should return to it.

    You need your function to return the sprite so that you can add it to the display list and everything what you need.

    So just have the function get Sprite, push it in the "toBeClearedInTheFutureArray" and then return a reference to the currently acquired sprite.

  • What is the best way to deal with the events of Qml-components of java script or C++?

    Hello

    Please suggest which is the best way to treat the Qml-components signal in the manuscript of java or C++.

    can read contacts in javaScript?

    When you want to make things more complex: Yes.
    QT made it much easier for me as a java developer, bb, but you will need to learn some basics.

  • Best way to deal with pictures from the start? (Bridge CS5 and iPhoto)

    Hi all

    I am just learning the strings of all the suite CS5 and began to add keywords etc in bridge, when I realized that I couldn't access the files in my iPhoto library ('09). I read a few threads on this topic, but have not really found a consensus on how to deal with it.

    I think I'm in a good position to get things right from the start, because I have no tags or sides etc. in my configuration of iPhoto (and only add keywords for the few photos that weren't in my iPhoto library), and wonder what you think is the best way to sort photos given I intend to use them in web design etc. and all the parts of my suite CS5.

    If the photos in iPhoto is the best what is the best way to do it? I have read suggestions do a right-click on the library and click "Show content" - or something like cela, but that does not come up as an option when I right click my iPhoto in Bridge library. Thanks a lot for your help!

    Please let me know if there is any info I could give you that could be useful in order to understand this one.

    Best,

    Mara

    PS: for the temporary folder, I use a name like to-do Images

    Remember once the keywords are used is not just the manipulation/image adjustments which are important metadata but also robust observation with integrity

  • Best way to deal with screen capture?

    Hello world

    I have a lot of images captured with Snagit (computer screens). They will be printed in black and white.

    I usually do the following: open the png file in Photoshop, select Convert to grayscale Mode and save it as PSD.

    Generally, I get the results reasonably good in printed books (CMYK and n & W). [If I put the image I do usually only in Photoshop, but if the budget is tight, I do the scaling in Indesign]. I confess that I am not a very good "Photoshop" and I noticed that under Image-> adjustments there is a command to convert to B & W images.

    I played a bit with this two options and I have concluded that the files obtained with this IVª of different shades of gray are a little different.

    Can anyone advise me on the best method to use and the best way to do this kind of conversion in Photoshop. I'm on Windows using CS 5.5

    Thank you in advance.

    Maria

    In fact, in Photoshop, black and white is really a neutralized RGB image - three channels balanced to have the appearance of a B & W photo. If you want the pixels that are either black or white, nothing else, a channel, you must convert it to Bitmap mode.

    In the same way, "printing in black-and-white ad" is not accurate - you print in black and leave everything else without ink. To get gray you would use a halftone screen of a certain value.  I imagine that if you print monochrome (any single color, including black) you want to convert in grayscale, bitmap not mode. You might, however, want to use black and white conversion first, which lets you play with the sliders and set the contrast of the different colors in the screenshot to make the image as readable as possible, then convert it to grayscale. I prefer to use an adjustment layer for these adjustments, such as B & W, that can be done this way because it is more flexible and does not change the underlying image.

    A consensus among users here who work a lot with screen capture is that you can scale to the ID and the results will be as good as scaling in Photoshop.

  • Best way to deal with interlaced video

    I'm shooting a "talking head" video for part of a Flash movie, and unfortunately I have only a good quality consumer dv camera, which seems to record everything as interlaced. I also only have final cut express, which also seems to export all as interlaced. I hear that's not optimal for the video that will be streamed on the Web, in other words, if you want sharp.

    I wonder if anyone knows the best way to make my sharper image. If I import, manipulate and export it in final cut express greater than necessary, and then scale it down significantly in the Flash 8 video encoder, will be the downward revision to the fact the interlacing less noticeable, similar to the downward revision to one image low fixed resolution may make it sharper?

    I heard elsewhere in this forum that the use of any just deinterlace filter makes it worse.

    Thank you.

    PS - I certainly would not say that the use of any deinterlacing filter makes
    worse... it depends on the video for one. For a talking head, I think that it
    could work perfectly. For a very quick movement, it may not work too
    good though. You have to try it and see - these filters exist for a reason.

    --
    Dave-
    Developer leader
    www.blurredistinction.com
    Adobe Community Expert
    http://www.Adobe.com/communities/experts/

  • My Acrobat has stopped working.  I have the CS6 Master Collection.  I had this happen before and I had to reinstall with the entire suite.  Is this stil the best way to deal with this?

    Sorry, meant CS6.

    Hey Gary Kirby,

    Please make sure that you are connected to your system as administrator.

    Let me know the exact error that invites on your screen when launching Acrobat.

    You might also check out this link to doc KB and try solutions as indicated:

    Does not start after 30 days. Installed as part of a suite CS6

    Please check and let me know.

    Kind regards

    Ana Maria

  • I currently have creative cloud of a photographer.  I must add my subscription first.  What is the best way to go with the best available prices?

    I currently have creative cloud of a photographer.  I must add my subscription first.  What is the best way to go with the best available prices?

    Hello

    Please see the pricing and membership creative cloud plans | Adobe Creative Cloud for plans.

    Otherwise, you can talk with the sales of Adobe as well.

    I recommend going for the plan of single-app.

    Kind regards

    Sheena

  • What is the best way to work with Word documents in The InDesign CS4?

    I work in Microsoft Word 2007 and all my documents have.doc format.

    What is the best way to work with Word documents in InDesign CS4?

    David Blatner says to avoid copying and pasting text from Word instead of placing (Ctrl + D).

    How to paste RTF or text Document?

    I want to do a book layout in ID CS4 and its main feature is that there is the left page with the text and the right - with graphics.

    So, if I understand correctly place the text on each page I create for example 70 Word documents and place each element on 70 pages left?

    He loks like wasting time. I have supplements another way to make such provision?  What kind?

    It is best to place any text.

    You can have all your text in a single file and debit allows you to add text, images and pages as necessary block (hold down the SHIFT key when you click the loaded text cursor), but it is somewhat atypical for the thread on one side of the spread in the perspective of automatic flow, so you don't have to set up properly.

    It is a case where a block of text that you type will work to your advantage. On your master page, add a text block to the left page, but not to the right (or at least not donned one to the right - for another project you can actually two threads of independent text). Hold the cursor of the load on a frame on the left side of a page document and auto-flux. ID will add new spreads as needed, but only to put the text on the left side.

    Peter

  • Connect with * address email is removed from the privacy * is blocked

    There was a problem with the song in my account (* address email is removed from the privacy *) a week before. He has temporarily blocked because of some spam massages. but I had recovered the use of password reset code.
    Now, I had this massage
    Connect with * address email is removed from the privacy * is blocked

    • Someone has entered the password wrong too many times.
    • If you registered for this ID through an organization, you will not be able to use the account again

    I got the link for the reset several times and I have reset the password but whenever I try to sing in. I use to get the same massage. What can I do to recover my account. He is my school and counts deal with work. I need to return, please help me

    This forum is for posting comments on Microsoft Answers web site, not to any other technical questions.

    For me it looks like you're talking about a Windows Live ID.  Questions about who belongs in the center of Windows Live Windows Live ID Portalsolutions.

  • Connect with * address email is removed from the privacy * is blocked for one of the following reasons:

    Hi, Im Mohamed, I sigfn I http://www.hotmail.com whith my ID show this maseg

    Connect with * address email is removed from the privacy * is blocked for one of the following reasons:

    • Someone has entered the password wrong too many times.
    • If you registered for this ID through an organization, you may not be able to use the account again.

    How to unlock my mail,

    NOTE: I tried reset my password security Question, write the correct answer, then show

    This option is temporarily unavailable because incorrect information was entered too many times. Please, try another option or try again later.

    Help me pz

    PZ send the response to this ID * address email is removed from the privacy * OR * address email is removed from the privacy * very thanks.

    Hi M-GhiathDakkak,

    Your question about Hotmail he will be better answered in forum Windows Live Hotmail . Please repost your question here.

  • Best way to accept credit cards via a mobile-to-Web site created by muse? Thank you

    Best way to accept credit cards via a mobile-to-Web site created by muse? Thank you

    Muse has Paypal Widgets included.

    There is also eCommerce additional widgets available at www.musewidgets.com

    Additional information can been read on a recent Muse Jam Session recording: Muse Jam: integration of your online store - YouTube

  • Can I make a html newsletter in Muse and import in British Colombia to be used for the bulletin in British Colombia? If so, is anyone know how?

    Can I make a html newsletter in Muse and import in British Colombia to be used for the bulletin in British Colombia? If so, is anyone know how?

    Hello

    If we are talking about newsletters, this is a HTML file which have links to all items with do not involve java scripts.

    So far, MUSE uses java scripts for control of its design, you can see this by creating a file in MUSE and exported to HTML, you will get a "scripts" folder in which all the .js exist.

    So the answer is no we can not build newsletters in MUSE so far.

    Thank you

    Prabhakar Kumar

  • How can I find out what programs has not been used for awhile so I can remove from Control Panel

    Original title: Control Panel

    How can I find out what programs has not been used for awhile so I can remove from Control Panel

    It is removed, it's just in your own knowledge and memory.  If you know that you have not used and don't want that, then you can delete it.  It's entirely your choice

Maybe you are looking for

  • Notes

    All my notes on my phone are on my Local Notes and therefore does not automatically sync to my other devices. How can I move all of my Local Notes to my notes on iCloud?

  • iPhone 6s battery problem

    Hi allmy iPhone more than 6 s don't be stopped when the battery is at 1%. IPhones normally do a stop, when they have no more battery life. The next problem is that the battery is often at the same percentage, while charging. I'm afraid, this Bug woul

  • Satellite L875D - an another GPU for Dual HDMI output possible?

    My L875D Satellite has a loose VGA output and I can get is more a third monitor to display, which leaves me with just the screen of the laptop and a second monitor - the computer screen is too small for my needs, so I would get my other 27 "monitor i

  • I WISH THAT ALL PAGES TO FIT ON MY SCREEN SO I CAN'T USE THE ARROW LEFT AND ARROW RIGHT! THANK YOU VERY MUCH FOR YOUR HELP!

    MY PAGES HAVE BEEN VERY WELL UNTIL I DOWNLOADED SOMETHING, I DON'T KNOW EXACTLY.   I THOUGHT I TRY TO DELETE WHAT I DOWNLOADED ARRIVE TO WHERE I WAS, BUT I DON'T THINK IT WORKED OR I DELETE ANYTHING!  SO I'M GOING TO STILL USE THE ARROW LEFT AND ARRO

  • XPS 8700 GT635 GPU overheating

    Hello. I bought my XPS 8700 two years ago and it was fine, until a few months ago. My GPU has begun to overheat when I'm on every game. Even games that I played before has no overheating GPU are now against overheating it. I can't play any games beca