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
      • MozCon
      • Webinars, Whitepapers, & Guides
    • Blog
    • Why Moz
      • Digital Marketers
      • Agency Solutions
      • Enterprise Solutions
      • Small Business Solutions
      • 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.

      Track AI Overviews in Keyword Research
      Moz Pro

      Track AI Overviews in Keyword Research

      Try it free!
    • 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
      • Digital Marketers

        Simplify SEO tasks to save time and grow your traffic.

      • 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.

      • 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
    3461
    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

      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

        Thanks a lot for your answer 🙂

        1 Reply Last reply Reply Quote 0
        • MichaelC-15022
          MichaelC-15022 last edited by

          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 Reply Quote 1
          • 2MSens
            2MSens last edited by

            Any IIS expert around?.. 😃

            1 Reply Last reply Reply Quote 0
            • Andy.Drinkwater
              Andy.Drinkwater @2MSens last edited by

              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

                there is no .htaccess on IIS servers 😉

                Andy.Drinkwater 1 Reply Last reply Reply Quote 0
                • 2MSens
                  2MSens @vmialik last edited by

                  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

                    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 Reply Quote 0
                    • vmialik
                      vmialik @2MSens last edited by

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

                      Andy.Drinkwater 2MSens 2 Replies Last reply Reply Quote 1
                      • 2MSens
                        2MSens @vmialik last edited by

                        Hi Vadim,

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

                        vmialik 1 Reply Last reply Reply Quote 0
                        • 2MSens
                          2MSens @Andy.Drinkwater last edited by

                          Hi Andy,

                          thanks, it works for IIS servers too?

                          • Benoit.
                          1 Reply Last reply Reply Quote 0
                          • vmialik
                            vmialik last edited by

                            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 Reply Quote 0
                            • Andy.Drinkwater
                              Andy.Drinkwater last edited by

                              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 Reply Quote 0
                              • 1 / 1
                              • First post
                                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

                              • wcksmith1

                                Proper 301 redirect code for http to https

                                I see lots of suggestions on the web for forwarding http to https.  I've got several existing sites that want to take advantage of the SSL boost for SEO (however slight) and I don't want to lose SEO placements in the process.  I can force all pages to be viewed through the SSL - that's no problem.  But for SEO reasons, do I need to do a 301 redirect line of code for every page in the site to the new "https" version?  Or is there a way to catch all with one line of code that Google, etc. will recognize & honor?

                                Technical SEO | | wcksmith1
                                0
                              • categorycode

                                What is the best way to deal with an event calendar

                                I have an event calendar that has multiple repeating items into the future. They are classes that typically all have the same titles but will occasionally have different information. I don't know what is the best way to deal with them and am open to suggestions. Currently Moz anayltics is showing multiple errors (duplicate page titles, descriptions and overly dynamic urls). I'm assuming that it's showing duplicate elements way into the future. I thought of having the calendar no followed at all but the content for the classes seems valuable. Thanks,

                                Technical SEO | | categorycode
                                0
                              • Silviu

                                301 redirect relative or absolute path?

                                Hello everyone, Recently we've changed the URL structure on our website, and of course we had to 301 redirect the old urls to the coresponding new ones. The way the technical guys did this is: "http://www.domain.com/old-url.html" 301 redirect to "/new-url.html"
                                meaning as a relative redirect path, not an absolute one like this:
                                "http://www.domain.com/old-url.html" 301 redirect to "http://www.domain.com/new-url.html" This happened for few thousands urls, and the fact is the organic traffic dropped for those pages after this change. (no other changes were made on these pages and the new urls are as seo friendly as possible, A grade on On-Page Grader). The question is: does the relative redirect negatively affects seo, or it counts the same as an absolute path redirect? Thanks,
                                S.

                                Technical SEO | | Silviu
                                0
                              • ulefos

                                Remove html file extension and 301 redirects

                                Hi Recently I ask for some work done on my website from a company,  but I am not sure what they've done is right.
                                What I wanted was html file extensions to be removed like
                                /ash-logs.html to /ash-logs
                                also the index.html to www.timports.co.uk
                                I have done a crawl diagnostics and have duplicate page content and 32 page title duplicates. This is so doing my head in please help This is what is in the .htaccess file <ifmodule pagespeed_module="">ModPagespeed on
                                ModPagespeedEnableFilters extend_cache,combine_css, collapse_whitespace,move_css_to_head, remove_comments</ifmodule> <ifmodule mod_headers.c="">Header set Connection keep-alive</ifmodule> <ifmodule mod_rewrite.c="">Options +FollowSymLinks -MultiViews</ifmodule> DirectoryIndex index.html RewriteEngine On 
                                 # Rewrite valid requests on .html files  RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule ^ %{REQUEST_URI}.html?rw=1 [L,QSA] 
                                 # Return 404 on direct requests against .html files RewriteCond %{REQUEST_URI} .html$  
                                RewriteCond %{QUERY_STRING} !rw=1 [NC]
                                 RewriteRule ^ - [R=404] AddCharset UTF-8 .html # <filesmatch “.(js|css|html|htm|php|xml|swf|flv|ashx)$”="">#SetOutputFilter DEFLATE #</filesmatch> <ifmodule mod_expires.c="">ExpiresActive On
                                ExpiresByType image/gif "access plus 1 years"
                                ExpiresByType image/jpeg "access plus 1 years"
                                ExpiresByType image/png "access plus 1 years"
                                ExpiresByType image/x-icon "access plus 1 years"
                                ExpiresByType image/jpg "access plus 1 years"
                                ExpiresByType text/css "access 1 years"
                                ExpiresByType text/x-javascript "access 1 years"
                                ExpiresByType application/javascript "access 1 years"
                                ExpiresByType image/x-icon "access 1 years"</ifmodule> <files 403.shtml="">order allow,deny allow from all</files> redirect 301 /PRODUCTS http://www.timports.co.uk/kiln-dried-logs
                                redirect 301 /kindling_firewood.html http://www.timports.co.uk/kindling-firewood.html
                                redirect 301 /about_us.html http://www.timports.co.uk/about-us.html
                                redirect 301 /log_delivery.html http://www.timports.co.uk/log-delivery.html redirect 301 /oak_boards_delivery.html http://www.timports.co.uk/oak-boards-delivery.html
                                redirect 301 /un_edged_oak_boards.html http://www.timports.co.uk/un-edged-oak-boards.html
                                redirect 301 /wholesale_logs.html http://www.timports.co.uk/wholesale-logs.html redirect 301 /privacy_policy.html http://www.timports.co.uk/privacy-policy.html redirect 301 /payment_failed.html http://www.timports.co.uk/payment-failed.html redirect 301 /payment_info.html http://www.timports.co.uk/payment-info.html

                                Technical SEO | | ulefos
                                1
                              • twotd

                                301 redirect not working

                                Hi there! I have recently moved a domain that has been indexed by google and setup redirects so that it forwards to the new domain. It seems like the only redirect that actually is working is the canonical and main domain but every other page and or page nested within a folder are not working. Here is an example of some of the redirects. Am I doing this wrong? It seems to be going to the new domain but can't find the actual pages.... RewriteEngine On
                                RewriteBase /
                                RewriteCond %{HTTP_HOST} !agoodsweep.com$ [NC]
                                RewriteRule ^(.*)$ http://agoodsweep.com/$1 [L,R=301]
                                redirect 301 woodstoveservicerepair.html http://agoodsweep.com/woodstoveservicerepair/
                                redirect 301 /westchesterchimney.html http://agoodsweep.com/west-chester-chimney/ Thanks in advance for any help!!

                                Technical SEO | | twotd
                                0
                              • Gotmoxie

                                How do I fix a 301 Redirect Loop?

                                Saturday I waas doing some correcting of some duplicate titles, including nofollowing tags, etc. (my main problem was duplicate titles due to tags and categories being indexed). Now this morning I see that one of my pages refuses to load, citing a 301 redirect loop. http://www.incredibleinfant.com/feeding/switching-baby-formula/ Originally, the page was posted under the wrong category. http://www.incredibleinfant.com/uncategorized/switching-baby-formula I resaved it under the correct category (feeding) and now it won't load. Can someone help me figure out how to correct this mess? Thanks so much Heather

                                Technical SEO | | Gotmoxie
                                0
                              • SamTurri

                                Any way around buying hosting for an old domain to 301 redirect to a new domain?

                                Howdy. I have just read this QA thread, so I think I have my answer. But I'm going to ask anyway! Basically DomainA.com is being retired, and DomainB.com is going to be launched. We're going to have to redirect numerous URLs from DomainA.com to DomainB.com. I think the way to go about this is to continue paying for hosting for DomainA.com, serving a .htaccess from that hosting account, and then hosting DomainB.com separately. Anybody know of a way to avoid paying for hosting a .htaccess file on DomainA.com? Thanks!

                                Technical SEO | | SamTurri
                                0
                              • mamacassi

                                Internal vs external blog and best way to set up

                                I have a client that has two domians registered - one uses www.keywordaustralia.com the other uses www.keywordaelaide.com He had already bought and used the first domain when he came to me I suggested the second as being worth buying as going for a more local keyword would be more appropriate. Now I have suggested to him that a blog would be a worthy use of the second domain and a way to build links to his site - however I am reading that as all links will be from the same site it wont be worth much in the long run and an internal blog is better as it means updated content on his site. should i use the second domain for blog, or just 301 the second domain to his first domain. Or is it viable to use the second domain as the blog and just set up an rss feed on his page ? Is there a way to have the second domain somehow 'linked' to his first domain with the blog so that google sees them as connected ? NOOBIE o_0

                                Technical SEO | | mamacassi
                                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
                              • Digital Marketers
                              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.