How to Fix a 401 Unauthorized Error

March 28, 2023 by
401 – Unauthorized is the internet equivalent of a “Restricted Entry” sign at a posh nightclub. Sure, it may help you keep away some unsavory visitors. But it can also turn away legitimate customers while making you look like a snob. Worse still, 401 errors are often caused by reasons that have nothing to do […]


401 – Unauthorized is the internet equivalent of a “Restricted Entry” sign at a posh nightclub. Sure, it may help you keep away some unsavory visitors. But it can also turn away legitimate customers while making you look like a snob.

Worse still, 401 errors are often caused by reasons that have nothing to do with the visitor, making them extra frustrating to encounter. But not to worry! Here are a few simple steps you can take as a website owner to troubleshoot the 401 error before it starts impacting your website’s trust.

What is the 401 Unauthorized Error?

The 401 Unauthorized error is an HTTP status code indicating that the client is not authorized access to the requested resource.

What that actually means: 401 – Unauthorized is an authentication error, which means that the web page you are trying to visit is password-protected, and you don’t have the correct permissions to access it. This can happen when the user enters a wrong password or when there’s a restriction on accessing the web page from the user’s geographic location.

Of course, 401 errors can also be false positives, meaning that the error can occur even when the visitor has the right credentials to log into a website. It may even occur when the web page isn’t supposed to be password-protected at all. For example, it can be caused by a jittery firewall, a troublesome plugin, or an uncooperative extension added to your website.

You may notice the 401 error as one of these messages popping up in your browser window:

  • 401 Authorization Required
  • 401 Unauthorized
  • HTTP 401 Error – Unauthorized
  • Access Denied
  • HTTP Error 401
Example Of 401 Unauthorized Error Page

401 Unauthorized: Potential Causes of the HTTP Error Code

401 errors occur when a web browser has trouble authenticating the visitor’s login credentials with the website’s server. Here are a few common causes why that might happen:

  • Error or typo in the website’s URL.
  • Outdated cookies or browser cache.
  • IP address restrictions on-site access.
  • Errors in server configuration.
  • Incompatible plugin or website theme.
  • Incorrect login attempts by the user.

401 errors are normally client-side errors, meaning they can often be fixed by clearing your browser’s cookies or inputting the correct password. However, server-side issues like plugins and firewalls can also cause these errors, making it very important for site admins to be aware of potential conflicts.

But these are all surface-level explanations. If you want to know what causes a 401 error, you must understand how authentication works in web development.

When a client (i.e., a web browser) requests access to a protected resource on a website, the website will need the client to provide some form of valid authentication. These credentials could be in the form of API keys, a username and password, digital certificates, or something else — depending on the authentication scheme used by the site.

The website then processes the authentication credentials to verify their validity. This could involve checking the credentials against a stored database of users and passwords, contacting an external authentication provider, or performing some other form of validation.

If the authentication is successful, it returns a 200 status code, and the website will generate a session token for the client. This identifies the authenticated client and tracks the client’s interactions within the website. The session token is often stored in a cookie in the client’s browser or as a header in any subsequent requests.

However, if the authentication is unsuccessful, the website will return an HTTP error message, such as the 401 error code. The 401 error message typically includes a WWW-Authenticate header, which explains how to authenticate with the server in the user’s browser. This header can include more context about the 401 error, such as the type of authentication required (e.g. Basic, Digest, or OAuth).

How to Diagnose the 401 Error as a User or Administrator

401 access control errors are pretty common when logging into a membership site or accessing a protected web page. Luckily, they are also very easy to fix most of the time. Here are a few things you can do to address this error, both as a website visitor and a web administrator:

Client-Side Solutions

401 error pages are sometimes caused by client-side issues like login credentials or even the web browser used to access your website’s password protection system. These can be fixed with a few simple steps from the visitor’s end:

  • Check User Credentials: Make sure you entered the correct username and password combination. Double-check your authentication credentials for the slightest typo. Remember, usernames and passwords are case-sensitive.
  • Clear Browser Cookies: If the website uses cookies for authentication, the error may be because of invalid or expired cookies. Normally, cookies have an expiration date or just expire when the browser is closed. If you’re having trouble accessing a website, clear browsing data by following the instructions for your specific web browser to help solve the issue.
DreamHost Glossary

Cookies

Cookies are pieces of data sent to a user’s computer or mobile device by a web server. They are then stored on the user’s device. Cookies can be used for authentication, identification of a user session, personalization of web content, or collecting information about the use of a website.

Read More

  • Verify URL: Make sure the URL you’re trying to access is correct and up-to-date. Otherwise, the DNS server may not be able to find the website and instead return the 401 error. If you’re following a link from another website, it’s quite possible that the link is using the wrong URL.
  • Rate Limiting: If the website server is rate limiting requests from the same IP address, this can lead to a 401 Unauthorized Error. Make sure that you don’t exceed the number of login requests allowed by the server. The limit is often indicated in the login form.
Flush Your Dns On Windows 10/11
Flush Your Dns Cache On Mac Using Terminal

DNS Flushing

DreamHost Glossary

What is DNS?

The Domain Name System (DNS) protocol keeps records of which domain names correspond to specific IP addresses. This system enables you to browse the web by typing in regular URLs instead of IP addresses.

Read More

DNS Caches help improve loading speed and website performance when browsing the internet, but they can sometimes become corrupted and result in an authorization error when accessing specific web pages. Fixing this is as easy as flushing (clearing) your DNS server, which can be done a few different ways:

Windows: To flush your DNS on Windows 10/11, follow these steps:

  • Open the Command Prompt by pressing Windows+R and typing “̌cmd” (without quotes) into the Run dialog box.
  • Now type in the command “ipconfig/flushdns” inside Command Prompt.
  • If you are a Windows PowerShell user, you can do this by opening PowerShell and typing in “Clear-DnsClientCache” (without quotes).
  • This will flush the DNS and clear all the records from the local DNS cache.

MacOS: If you’re using a Macbook or iMac, you can flush your DNS cache using Terminal.

  • Open Terminal on your Mac by using Spotlight Search or pressing Command+Space and typing Terminal into the search box.
  • Inside Terminal, type in “sudo dscacheutil -flushcache;sudo killall -HUP mDNSResponder” (without quotes).
  • Your DNS cache has now been flushed on your Apple computer.

Google Chrome: If you’re using Google Chrome, the browser has its own DNS cache that’s independent of the Operating System (Windows or Mac). To clear Chrome’s DNS cache:

  • Type “chrome://net-internals/#dns” into the address bar.
  • Now, click on the “Clear host cache” button to clear your DNS records.
Ways To Fix The 401 Error. On Client-Side Solution, The Client Can Start To Check Credentials, Clear Cookies. Confirm Url, Limit Requests, And Flush Dns. On Server-Side Solutions, Check Diagnose Plugins, Examine Header, And .Htaccess File

WordPress Plugins

Plugins are a staple for WordPress websites, but they can sometimes also cause errors if configured improperly. This can happen when the plugin contains code that creates a website security issue or conflicts with the platform’s core functionality.

So, what can a site admin do to fix this issue? Well, the first step is to identify which plugin or plugins are causing the issue. Usually, this can be done by disabling each plugin one-by-one and checking if the error still appears. Once the plugin causing the issue is identified, you can either update, reconfigure, or permanently remove it. Common culprits may include:

  • CDN services like Cloudflare and KeyCDN.
  • Web firewalls like Sucuri and Wordfence.
  • Poorly built WordPress themes.

Follow these simple steps to enable or disable plugins on your WordPress site:

  • First, log in to your WordPress dashboard.
  • Click on the “Plugins” option in the left-hand menu.
  • Find the plugin you want to enable or disable and click on the “Activate” or “Deactivate” button below the plugin name.
  • If you want to disable multiple plugins at once, check the box next to each plugin and select “Deactivate” from the “Bulk Actions” drop-down menu.
  • If you want to enable multiple plugins at once, check the box next to each plugin and select “Activate” from the “Bulk Actions” drop-down menu.

In some cases, it is also possible to fix the issue by disabling or reconfiguring specific settings within a plugin. For example, if your website uses a caching plugin, it’s worth trying to clear the cache and check if the error still appears.

In a few rare cases, 401 errors can result from a server error. You can find out more about this by looking at your WWW-Authenticate Header.

The WWW-Authenticate Header is a response header sent by the server that contains information on the authentication methods supported by the site. This header helps the user’s browser decide which authentication protocol to use when requesting data from the server.

The header is also used to send additional information about the authentication process. This may include the domain being protected by the authentication scheme, or the algorithm used by the server.

To check the WWW-Authenticate Header, open Chrome, navigate to the URL causing the 401 error, and right-click anywhere on the page. From the drop-down menu, select ‘Inspect’. This will bring up the Developer Tools window.

Select the Network tab once inside the Developer Tools window. Here, you’ll see all the requests the browser sends when loading the page. If the response from the server contains a WWW-Authenticate header, it will be visible in this tab.

By inspecting the WWW-Authenticate header, you can get a better understanding of the authentication process used by the server. Next, check that the response was sent and identify what authentication scheme was used to send it. That’ll help you narrow down the problem before looking for a specific solution. Here are a few authentication schemes found in the WWW-Authenticate Header, along with descriptions of how they work, for reference:

  • Basic: This scheme uses a base64-encoded username and password separated by a colon. This is considered the least secure authentication method and should only be used over HTTPS.
  • Digest: This scheme uses a challenge-response protocol to authenticate clients. The server sends a nonce value to the client, which the client uses to create a response based on the username, password, and request information.
  • Bearer: This scheme is used for OAuth 2.0 authentication. The client receives a token from the server, which it uses to authenticate subsequent requests.
  • Negotiate: This scheme is used for Kerberos authentication.
  • AWS4-HMAC-SHA256: This authentication scheme is used to authenticate requests to Amazon Web Services (AWS) using an AWS access key and a secret access key.
  • Token: This scheme is used to authenticate with a token-based system.
401 Errors Can Result From A Server Error. You Can Find Out More About This By Looking At Your Www-Authenticate Header. The Www-Authenticate Header Is A Response Header Sent By The Server That Contains Information On The Authentication Methods Supported By The Site.

.htaccess File

If you’re experiencing a 401 error on your website, one possible cause could be an issue with your .htaccess file. The .htaccess file is a configuration file used by Apache web servers to control access to your website’s directories and files. Here’s how to check your .htaccess file for causes of a 401 error:

  • Connect to your website’s server using an FTP client or file manager.
  • Navigate to the directory where your .htaccess file is located. This is usually the root directory of your website.
  • Download a copy of your .htaccess file to your computer.
  • Open the .htaccess file in a text editor (like Notepad++) and look for any lines that specify access controls or authentication requirements. Specifically, you’ll want to look for the following parameters: AuthUserFile, AuthName, AuthType, and Require.
  • Check that the access controls or authentication requirements specified in the .htaccess file match the settings you intend to use for your website. For example, if you have recently updated your website’s authentication mechanism (AuthType), you may need to update the corresponding settings in your .htaccess file as well.
  • Save the changes to your .htaccess file and upload it back to your website’s server.
  • Test your website to see if the 401 error has been resolved.

HTTP response codes offer little context on their own, which makes them troublesome to navigate without the proper technical assistance. It’s part of the reason why DreamHost offers 24/7 support to help you troubleshoot downtime on your website and domain.

If you’re having trouble diagnosing or fixing a 401 error on your website, you can try contacting your hosting provider for support. It’s also possible to contract a technical expert, such as a web developer, for help with the issue.

401 errors can be jarring for the end user, but they are often an easy fix. If you’re contacted by someone unable to access your website due to this error, walk them through the common client-side solutions before looking into any potential server issues, such as WordPress plugins or the WWW-Authenticate header. If you’re still having trouble, you can always bring in some technical help to diagnose the issue.

Get Content Delivered Straight to Your Inbox

Subscribe now to receive all the latest updates, delivered directly to your inbox.

Jason is DreamHost’s WordPress Product Advocate, based out of Bakersfield, CA. He is currently working on making our DreamPress product even better. In his free time, he likes to curl up on the couch and watch scary movies with his wife Sarah and three very small dogs. Follow him on Twitter.



Your Dream Website Is Just One Click Away

At Ericks Webs Design, we believe every business deserves a stunning online presence — without the stress. We offer flexible payment options, a friendly team that truly cares, and expert support every step of the way.

Whether you’re a small business owner, a church, or a growing brand, we’re here to bring your vision to life.

✨ Let’s build something amazing together.

— no pressure, just possibilities.

Latest News & Website Design Tips

Stay up-to-date with the latest insights, trends, and tips in business website design. Explore our newest articles to discover strategies that can help you elevate your online presence and grow your business.

Why Your Website is Your #1 Sales Tool in 2025

Why Your Website is Your #1 Sales Tool in 2025

The article “Why Your Website is Your #1 Sales Tool in 2025” highlights the importance of having an effective website as the key to driving sales for small businesses. It emphasizes that a well-designed website acts as a digital storefront, attracting customers with engaging content rather than clutter. With studies showing that consumers prefer informative articles over advertisements, businesses should focus on solid branding, SEO, and mobile-friendliness. Regular updates and maintenance are crucial to keep the site relevant. Ultimately, the article stresses that your website is your number one sales tool in 2025, urging small businesses to invest attention and care in their online presence.

Track & Improve Conversions with These Tools

Track & Improve Conversions with These Tools

The article “Track & Improve Conversions with These Tools” emphasizes the importance of transitioning casual website visitors into loyal customers for small and medium businesses in South Texas. It discusses leveraging tools like Google Analytics to understand audience behavior, A/B testing to optimize calls-to-action, and Hotjar to enhance user engagement. The article also highlights the role of social proof through testimonials and the significance of defining a unique selling proposition (USP) to stand out in a competitive market. With the right strategies and tools, businesses can effectively track and improve conversions, ensuring a successful online presence.

Capture More Leads with Popups (Without Being Annoying)

Capture More Leads with Popups (Without Being Annoying)

The article “Capture More Leads with Popups (Without Being Annoying)” explains how business owners can effectively use popups to attract leads while maintaining a positive user experience. Rather than appearing immediately, popups should be timed to appear after visitors engage with the site. Clear, friendly messaging and relevant offers tailored to site content are essential. Incentives, such as discounts, can encourage email sign-ups by fostering relationships. Testing various popup styles and ensuring they reflect the brand’s personality can enhance user connection. Ultimately, when used thoughtfully, popups can be a powerful tool for capturing more leads without being intrusive.

How to Use Social Proof to Drive Sales

How to Use Social Proof to Drive Sales

The article “How to Use Social Proof to Drive Sales” emphasizes leveraging social proof to enhance online presence and drive sales for local businesses. It highlights the importance of customer reviews, encouraging satisfied clients to share their experiences on platforms like Google and Facebook. Utilizing social media to showcase success stories and engaging with the audience is also recommended. Creating detailed case studies can provide evidence of results, while showcasing accolades and community involvement builds trust. Overall, businesses can harness social proof to strengthen relationships, establish credibility, and ultimately boost sales in a competitive digital landscape.

5 Website CTAs That Work Every Time

5 Website CTAs That Work Every Time

The article “5 Website CTAs That Work Every Time” emphasizes the importance of effective Call to Actions (CTAs) for improving website engagement. It highlights five key CTAs: “Get Your Free Quote Today!” encourages initial interaction; “Subscribe for Exclusive Tips & Tricks!” builds an email list while providing value; “Let’s Chat!” makes reaching out easy; “Check Out Our Portfolio” showcases previous work to build trust; and “Join Our Community” fosters a sense of belonging. The piece underscores that well-crafted CTAs transform a passive website into an engaging platform, ultimately boosting customer interaction and loyalty.

The Psychology Behind High-Converting Website Design

The Psychology Behind High-Converting Website Design

The article “The Psychology Behind High-Converting Website Design” highlights the importance of an effective website for boosting local businesses. It emphasizes that first impressions are crucial, as users form opinions within 50 milliseconds. Key elements for high-converting website design include visual hierarchy, clean layouts, and color psychology to evoke emotions. Engaging content is essential; it should resonate with the audience, tell stories, and feature clear calls to action. Building trust through easy navigation, social proof, and secure sites is vital for converting visitors into customers. Finally, the website should be adaptive, regularly updated to reflect new information and keep visitors engaged.

Create a Landing Page That Converts Like Crazy

Create a Landing Page That Converts Like Crazy

The article “Create a Landing Page That Converts Like Crazy” emphasizes the importance of an effective landing page for businesses of all sizes. It outlines key strategies to enhance conversions, starting with understanding your audience’s language and preferences. The author recommends using clear headlines, engaging visuals, and strong calls to action. Building trust through social proof, ensuring mobile responsiveness, and optimizing for SEO are also highlighted as crucial elements. Finally, the importance of monitoring analytics for continuous improvement is stressed. The article encourages business owners to collaborate with web design experts to create landing pages that truly convert.

Lead Magnets You Can Add to Your Website Today

Lead Magnets You Can Add to Your Website Today

The article “Lead Magnets You Can Add to Your Website Today” discusses how small business owners can enhance their online presence by using lead magnets. A lead magnet is an incentive, like a freebie, offered in exchange for a visitor’s email address. Suggested lead magnets include e-books, checklists, free trials, discount codes, webinars, and email courses, all designed to attract and engage potential customers. The article emphasizes the importance of making lead magnets easily accessible on your website and using analytics for performance tracking. It encourages businesses to embrace these strategies to convert visitors into lifelong customers, ultimately contributing to their growth.

Why You’re Losing Clients Without a Strong Homepage

Why You’re Losing Clients Without a Strong Homepage

The article “Why You’re Losing Clients Without a Strong Homepage” emphasizes the critical role of a well-designed homepage in attracting and retaining clients. It likens a confusing homepage to a messy store, which can drive potential customers away. A strong homepage should provide clear information about your offerings and resonate with the community, including using local visuals and language options. It’s vital to ensure mobile-friendliness and keep content updated to maintain engagement. A compelling homepage serves as a professional welcome mat for visitors, significantly impacting client retention. In summary, a strong homepage is essential for business success, especially in competitive markets like South Texas.