undefined
Skip to content
Moz logo Menu open Menu close
  • Products
    • Moz Pro
    • Moz Pro Home
    • Moz Local
    • Moz Local Home
    • STAT
    • Moz API
    • Moz API Home
    • Compare SEO Products
    • Moz Data
  • Free SEO Tools
    • Domain Analysis
    • Keyword Explorer
    • Link Explorer
    • Competitive Research
    • MozBar
    • More Free SEO Tools
  • Learn SEO
    • Beginner's Guide to SEO
    • SEO Learning Center
    • Moz Academy
    • SEO Q&A
    • Webinars, Whitepapers, & Guides
  • Blog
  • Why Moz
    • Agency Solutions
    • Enterprise Solutions
    • Small Business Solutions
    • Case Studies
    • The Moz Story
    • New Releases
  • Log in
  • Log out
  • Products
    • Moz Pro

      Your all-in-one suite of SEO essentials.

    • Moz Local

      Raise your local SEO visibility with complete local SEO management.

    • STAT

      SERP tracking and analytics for enterprise SEO experts.

    • Moz API

      Power your SEO with our index of over 44 trillion links.

    • Compare SEO Products

      See which Moz SEO solution best meets your business needs.

    • Moz Data

      Power your SEO strategy & AI models with custom data solutions.

    NEW Keyword Suggestions by Topic
    Moz Pro

    NEW Keyword Suggestions by Topic

    Learn more
  • Free SEO Tools
    • Domain Analysis

      Get top competitive SEO metrics like DA, top pages and more.

    • Keyword Explorer

      Find traffic-driving keywords with our 1.25 billion+ keyword index.

    • Link Explorer

      Explore over 40 trillion links for powerful backlink data.

    • Competitive Research

      Uncover valuable insights on your organic search competitors.

    • MozBar

      See top SEO metrics for free as you browse the web.

    • More Free SEO Tools

      Explore all the free SEO tools Moz has to offer.

    NEW Keyword Suggestions by Topic
    Moz Pro

    NEW Keyword Suggestions by Topic

    Learn more
  • Learn SEO
    • Beginner's Guide to SEO

      The #1 most popular introduction to SEO, trusted by millions.

    • SEO Learning Center

      Broaden your knowledge with SEO resources for all skill levels.

    • On-Demand Webinars

      Learn modern SEO best practices from industry experts.

    • How-To Guides

      Step-by-step guides to search success from the authority on SEO.

    • Moz Academy

      Upskill and get certified with on-demand courses & certifications.

    • MozCon

      Save on Early Bird tickets and join us in London or New York City

    Unlock flexible pricing & new endpoints
    Moz API

    Unlock flexible pricing & new endpoints

    Find your plan
  • Blog
  • Why Moz
    • Small Business Solutions

      Uncover insights to make smarter marketing decisions in less time.

    • Agency Solutions

      Earn & keep valuable clients with unparalleled data & insights.

    • Enterprise Solutions

      Gain a competitive edge in the ever-changing world of search.

    • The Moz Story

      Moz was the first & remains the most trusted SEO company.

    • Case Studies

      Explore how Moz drives ROI with a proven track record of success.

    • New Releases

      Get the scoop on the latest and greatest from Moz.

    Surface actionable competitive intel
    New Feature

    Surface actionable competitive intel

    Learn More
  • Log in
    • Moz Pro
    • Moz Local
    • Moz Local Dashboard
    • Moz API
    • Moz API Dashboard
    • Moz Academy
  • Avatar
    • Moz Home
    • Notifications
    • Account & Billing
    • Manage Users
    • Community Profile
    • My Q&A
    • My Videos
    • Log Out

The Moz Q&A Forum

  • Forum
  • Questions
  • Users
  • Ask the Community

Welcome to the Q&A Forum

Browse the forum for helpful insights and fresh discussions about all things SEO.

  1. Home
  2. SEO Tactics
  3. Technical SEO
  4. Best & easiest way to 301 redirect on IIS

Moz Q&A is closed.

After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.

Best & easiest way to 301 redirect on IIS

Technical SEO
4
13
3.4k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as question
Log in to reply
This topic has been deleted. Only users with question management privileges can see it.
  • 2MSens
    2MSens last edited by Feb 26, 2014, 7:53 AM

    Hi all,

    What is the best and easiest way to 301 redirect URLs on IIS server?

    I got access to the FTP and WordPress back office, but no access to the server admin.

    Is there an easy way to create 301 redirect without having to always annoy the tech in charge of the server?

    Thanks!

    1 Reply Last reply Reply Quote 0
    • 2MSens
      2MSens @MichaelC-15022 last edited by Mar 14, 2014, 6:52 AM Mar 14, 2014, 6:52 AM

      Thanks a lot for your answer 🙂

      1 Reply Last reply Reply Quote 0
      • MichaelC-15022
        MichaelC-15022 last edited by Mar 14, 2014, 6:52 AM Mar 7, 2014, 3:27 PM

        You have two options:

        1. Set it up in IIS Manager (best option, least overhead for the server, need no coding skills)
        2. Code it in classic ASP in a global include file that all pages reference before sending content back to the browser.

        Here's a great article that walks you through the IIS config option.  For this, you need access to IIS Manager:

        http://www.proworks.com/blog/2010/02/11/adding-a-301-redirect-in-iis-for-individual-pages-with-non-aspx-extensions/

        Sounds like that option is unavailable to you however.

        For the other option:  your site probably has a file or two that's included at the start of all web pages.  (If not, you can add it).  In that file, you'll want to check the URL passed in like this:

        Dim sThisPage                = Request.ServerVariables("SCRIPT_NAME")

        If (LCase(sThisPage) = "/oldpage.aspx") Then

        Response.Status            = "301 Moved Permanently"
                Response.AddHeader        "Location", "http://" & sThisServer & "/newpage.aspx"
                Response.End
        End If

        2MSens 1 Reply Last reply Mar 14, 2014, 6:52 AM Reply Quote 1
        • 2MSens
          2MSens last edited by Mar 7, 2014, 9:15 AM Mar 7, 2014, 9:15 AM

          Any IIS expert around?.. 😃

          1 Reply Last reply Reply Quote 0
          • topic:timeago_earlier,8 days
          • Andy.Drinkwater
            Andy.Drinkwater @2MSens last edited by Feb 27, 2014, 9:33 AM Feb 27, 2014, 9:33 AM

            There - you can see how often I have worked on IIS servers 😉

            1 Reply Last reply Reply Quote 1
            • 2MSens
              2MSens @Andy.Drinkwater last edited by Feb 27, 2014, 9:32 AM Feb 27, 2014, 9:32 AM

              there is no .htaccess on IIS servers 😉

              Andy.Drinkwater 1 Reply Last reply Feb 27, 2014, 9:33 AM Reply Quote 0
              • 2MSens
                2MSens @vmialik last edited by Feb 27, 2014, 9:31 AM Feb 27, 2014, 9:31 AM

                No problem, I'll have a look for another website 😉 thanks

                1 Reply Last reply Reply Quote 0
                • Andy.Drinkwater
                  Andy.Drinkwater @vmialik last edited by Feb 27, 2014, 8:24 AM Feb 27, 2014, 8:24 AM

                  Nor was I.

                  If you have FTP access, you might then have to work in the .htaccess file and build the redirects in there.

                  -Andy

                  2MSens 1 Reply Last reply Feb 27, 2014, 9:32 AM Reply Quote 0
                  • vmialik
                    vmialik @2MSens last edited by Feb 27, 2014, 7:09 AM Feb 27, 2014, 7:09 AM

                    Bummer, I was not aware of that, its such an awesome plugin

                    Andy.Drinkwater 2MSens 2 Replies Last reply Feb 27, 2014, 9:31 AM Reply Quote 1
                    • 2MSens
                      2MSens @vmialik last edited by Feb 27, 2014, 6:29 AM Feb 27, 2014, 6:29 AM

                      Hi Vadim,

                      Thanks for your answer, however it looks that the redirection plugin works only for apache servers.

                      vmialik 1 Reply Last reply Feb 27, 2014, 7:09 AM Reply Quote 0
                      • 2MSens
                        2MSens @Andy.Drinkwater last edited by Feb 27, 2014, 6:29 AM Feb 27, 2014, 6:29 AM

                        Hi Andy,

                        thanks, it works for IIS servers too?

                        • Benoit.
                        1 Reply Last reply Reply Quote 0
                        • vmialik
                          vmialik last edited by Feb 26, 2014, 8:10 AM Feb 26, 2014, 8:10 AM

                          Hi Benoit,

                          Yes, Andy is totally on it. Server side redirects are faster, however if you have Wordpress a plugins make it so much easier and convenient.

                          Also if you want other powerful features like: 404 error monitoring - captures a log of 404 errors and allows you to easily map these to 301 redirects, and more Try Redirection plugin

                          Hope this Helps!

                          2MSens 1 Reply Last reply Feb 27, 2014, 6:29 AM Reply Quote 0
                          • Andy.Drinkwater
                            Andy.Drinkwater last edited by Feb 26, 2014, 7:59 AM Feb 26, 2014, 7:59 AM

                            Absolutely - Install this plugin: http://wordpress.org/plugins/simple-301-redirects/

                            I use this on a couple of my own sites and it works a treat.

                            -Andy

                            2MSens 1 Reply Last reply Feb 27, 2014, 6:29 AM Reply Quote 0
                            • 1 / 1
                            1 out of 13
                            • First post
                              1/13
                              Last post

                            Got a burning SEO question?

                            Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.


                            Start my free trial


                            Browse Questions

                            Explore more categories

                            • Moz Tools

                              Chat with the community about the Moz tools.

                            • SEO Tactics

                              Discuss the SEO process with fellow marketers

                            • Community

                              Discuss industry events, jobs, and news!

                            • Digital Marketing

                              Chat about tactics outside of SEO

                            • Research & Trends

                              Dive into research and trends in the search industry.

                            • Support

                              Connect on product support and feature requests.

                            • See all categories

                            Related Questions

                            • SamKlep

                              301 redirect syntax for htaccess

                              I'm working on some htaccess redirects for a few stray pages and have come across a few different varieties of 301s that are confusing me a bit....Most sources suggest: Redirect 301 /pageA.html http://www.site.com/pageB.html or using some combination of: RewriteRule + RewriteCond + RegEx I've also found examples of: RedirectPermanent /pageA.html http://www.site.com/pageB.html I'm confused because our current htaccess file has quite a few (working) redirects that look like this: Redirect permanent /pageA.html http://www.site.com/pageB.html This syntax seems to work, but I'm yet to find another Redirect permanent in the wild, only examples of Redirect 301 or RedirectPermanent Is there any difference between these? Would I benefit at all from replacing Redirect permanent with Redirect 301?

                              Technical SEO | Jun 24, 2019, 9:03 AM | SamKlep
                              1
                            • bhsiao

                              Adding https version of website: how best to redirect

                              If I have 4 versions of my site http://www
                              http://
                              https://www
                              https:// What is the best way to redirect without losing seo positions? i have been mainly using http://www but have recently added my ssl so https works also. I heard at Moz Con that I should get the https working. All of my marketing and ads are going to http://www 301 redirect 3 of them? Which 3? If https is becoming important, should that be my main url? will it hurt my seo to switch? Thank you so much in advance!

                              Technical SEO | Mar 15, 2018, 6:01 PM | bhsiao
                              0
                            • RocketZando

                              Best Way To Clean Up Unruly SubDomain?

                              Hi, I have several subdomains that present no real SEO value, but are being indexed. They don't earn any backlinks either. What's the best way of cleaning them up? I was thinking the following: 1. Verify them all in Webmaster Tools. 2. Remove all URLs from the index via the Removal Tool in WMT 3. Add site-wide no-index, follow directive. Also, to remove the URLs in WMT, you usually have to block the URLs via /robots.txt. If I'd like to keep Google crawling through the subdomains and remove their URLs, is there a way to do so?

                              Technical SEO | Dec 31, 2012, 11:11 AM | RocketZando
                              0
                            • TitanDigital

                              Can you do a 301 redirect without a hosting account?

                              Trying to retire domain1 and 301 it to domain2 - just don't want to get stuck having to pay the old hosting provider simply to serve a .htaccess file with the redirect rule.

                              Technical SEO | Oct 5, 2012, 5:05 AM | TitanDigital
                              0
                            • Alick300

                              301 redirect using javascript

                              Can I use javascript code to redirect(301) a webpage?

                              Technical SEO | Jun 11, 2016, 6:56 PM | Alick300
                              0
                            • Kotkov

                              302 or 301 redirect to https ?

                              I am redirecting whole site to https. Is there a difference between 302 or 301 redirect for seo? Site never been indexed. Planning to do that with .htaccess command RewriteCond %{HTTPS} !=on
                              RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] There are plenty of ways http://www.askapache.com/htaccess/ssl-example-usage-in-htaccess.html Which way would be the best? Thanks is advance

                              Technical SEO | Feb 19, 2012, 4:19 AM | Kotkov
                              0
                            • EvergladesDirect

                              200 Redirects for SEO instead of 301

                              We are working with a company on re-platforming our website.  On a call yesterday they outlined a strategy to use 200 redirects for our top keywords instead of 301s.  I am not familiar with this type of redirect and was wondering if anyone could provide some more insight.

                              Technical SEO | Jun 1, 2011, 3:20 PM | EvergladesDirect
                              0
                            • briankb

                              301 Redirect vs Domain Alias

                              We have hundreds of domains which are either alternate spelling of our primary domain or close keyword names we didn't want our competitor to get before us. The primary domain is running on a dedicated Windows server running IIS6 and set to a static IP. Since it is a static IP and not using host headers any domain pointed to the static IP will immediately show the contents of the site, however the domain will be whatever was typed. Which could be the primary domain or an alias. Two concerns. First, is it possible that Google would penalize us for the alias domains or dilute our primary domain "juice"? Second, we need to properly track traffic from the alias domains. We could make unique content for those performing well and sell or let expire those that are sending no traffic. It's not my goal to use the alias domains to artificially pump up our primary domain. We have them for spelling errors and direct traffic. What is the best practice for handling one or both of these issues?

                              Technical SEO | Mar 22, 2011, 4:14 PM | briankb
                              0

                            Get started with Moz Pro!

                            Unlock the power of advanced SEO tools and data-driven insights.

                            Start my free trial
                            Products
                            • Moz Pro
                            • Moz Local
                            • Moz API
                            • Moz Data
                            • STAT
                            • Product Updates
                            Moz Solutions
                            • SMB Solutions
                            • Agency Solutions
                            • Enterprise Solutions
                            Free SEO Tools
                            • Domain Authority Checker
                            • Link Explorer
                            • Keyword Explorer
                            • Competitive Research
                            • Brand Authority Checker
                            • Local Citation Checker
                            • MozBar Extension
                            • MozCast
                            Resources
                            • Blog
                            • SEO Learning Center
                            • Help Hub
                            • Beginner's Guide to SEO
                            • How-to Guides
                            • Moz Academy
                            • API Docs
                            About Moz
                            • About
                            • Team
                            • Careers
                            • Contact
                            Why Moz
                            • Case Studies
                            • Testimonials
                            Get Involved
                            • Become an Affiliate
                            • MozCon
                            • Webinars
                            • Practical Marketer Series
                            • MozPod
                            Connect with us

                            Contact the Help team

                            Join our newsletter
                            Moz logo
                            © 2021 - 2025 SEOMoz, Inc., a Ziff Davis company. All rights reserved. Moz is a registered trademark of SEOMoz, Inc.
                            • Accessibility
                            • Terms of Use
                            • Privacy

                            Looks like your connection to Moz was lost, please wait while we try to reconnect.