Hero Background

Next-Gen App & Browser Testing Cloud

Trusted by 2 Mn+ QAs & Devs to accelerate their release cycles

Next-Gen App & Browser Testing Cloud

Test your website on
3000+ browsers

Get 100 minutes of automation
test minutes FREE!!

Test NowArrowArrow

KaneAI - GenAI Native
Testing Agent

Plan, author and evolve end to
end tests using natural language

Test NowArrowArrow

How to View Desktop Site on iPhone: 2026 Edition

Requesting a desktop site on iPhone sounds simple — until the button moves, the browser changes, or the site ignores you entirely. Here's everything that actually works.

Author

Deepak Sharma

March 5, 2026

There can be times when you want to request the desktop site on iPhone or iPad to see how a web page looks, or check some specific details or functionality that are only available in desktop mode.

This can be especially helpful if you want to compare the desktop and mobile views or test how desktop-specific features behave on mobile devices.

Quick Answer (TL;DR)

BrowserSteps
Safari (iOS 13-17)Tap the AA icon in the address bar -> tap Request Desktop Website
Safari (iOS 18+)Tap the page settings icon -> three dots -> Request Desktop Website
Chrome (any iOS)Tap the ... (three-dot) menu -> Request Desktop Site
Firefox (any iOS)Tap the ... menu -> Request Desktop Site
Make it permanentSettings -> Apps -> Safari -> Request Desktop Website -> enable All Websites

Method 1: Safari on iPhone

Safari is the default browser for iPhones, and the most common browser people use. The steps vary significantly based on your iOS version.

Safari on iOS 13 to iOS 17

This is the most widely used version of the flow.

  1. Open Safari and navigate to any website.
  2. Tap the AA icon on the left side of the address bar.
Open your desired website on the Safari browser and tap the AA icon
  1. In the pop-up menu, tap Request Desktop Website.
Tap on Request Desktop Website
  1. The page will reload and serve the desktop version.

That's it. Safari sends a new HTTP request with a desktop user agent, and the server responds accordingly.

To go back to mobile view: Repeat the same steps. The menu will now show Request Mobile Website instead.

Note: These steps apply to iOS 13, 14, 15, 16, and 17. The UI is the same across all these versions.

Safari on iOS 18 and Above

Apple redesigned Safari's interface in iOS 18, moving several controls around. If you upgraded to iOS 18 and cannot find the AA icon in the same place, here's what changed:

  1. Open Safari and navigate to your desired website.
  2. Tap the page settings icon (sliders icon) in the bottom-left corner.
Open your desired website using the Safari browser and tap the page settings icon
  1. Tap the three dots (...) icon in the bottom-right of the popup panel.
Tap the three dots icon
  1. Under PAGE ACTIONS, tap Request Desktop Website.
Tap on Request Desktop Website from the PAGE ACTIONS section
  1. The page will reload in desktop mode.

iOS 26: The same flow applies in iOS 26. If you are on a beta and see differences, use the page settings and ellipsis approach described above.

Safari on iOS 12 and Below

If you're on an older device stuck on iOS 12 or earlier:

  1. Open Safari and go to your website.
  2. Tap the AA icon in the top-left corner of the address bar.
Open your desired website on the Safari browser in iOS 12
  1. Tap Request Desktop Website to view the desktop version.
Request Desktop Website to view the desktop version of the website

Make Desktop Site Permanent in Safari (iOS 18+)

Manually requesting desktop mode every time can be slow during repeated testing.

  1. Open the Settings app.
  2. Scroll down and tap Apps.
  3. Tap Safari.
  4. Tap Request Desktop Website.
Tap on Safari and then Request Desktop Website in Settings
  1. Toggle on All Websites.
Enable the All Websites toggle to permanently request desktop site

From this point, Safari will request desktop mode for all sites until you turn this off.

Method 2: Google Chrome on iPhone

  1. Open Chrome and navigate to your website.
  2. Tap the three-dot menu in the bottom-right corner.
  3. Tap Request Desktop Site.
  4. The page reloads in desktop mode.

To switch back: Tap the menu and choose Request Mobile Site.

Method 3: Firefox on iPhone

  1. Open Firefox and navigate to your website.
  2. Tap the three-dot menu in the bottom-right corner.
  3. Tap Request Desktop Site.
  4. The page reloads.

Comparison Table: All Browsers at a Glance

BrowserWhere to TapPersistence
Safari (iOS 18+)Page settings icon -> Three dots -> Request Desktop WebsitePer visit
Safari (iOS 13-17)AA icon -> Request Desktop WebsitePer visit
Safari (iOS 12 and below)AA icon in top-left -> Request Desktop WebsitePer visit
Chrome (iOS)Three-dot menu -> Request Desktop SitePer domain (persistent)
Firefox (iOS)Three-dot menu -> Request Desktop SitePer domain (persistent)

Now that you know how to request desktop mode across every browser, there's one more thing worth knowing - it doesn't always work. Here's why, and what to do about it.

Why Isn't the Desktop Site Loading? (Troubleshooting)

This is one of the most common frustrations, and almost no guide addresses it properly. Here's the truth:

Requesting a desktop site is a request, not a command. Your browser changes the user agent string it sends with the HTTP request, essentially telling the server "I'm a desktop browser." But the server decides how to respond. And many modern websites don't actually use the user agent to determine which version to serve.

Common reasons desktop mode still shows a mobile layout:

1. The site uses responsive design (CSS-based), not server-side redirection

Most modern websites detect your screen size via CSS media queries, not your user agent. Changing the user agent does nothing to screen width. So even though you requested the desktop site, the site's CSS still detects a narrow viewport and serves the mobile layout.

Fix: There's no workaround from the browser on a real iPhone because the viewport is what it is. This is exactly why real device cloud testing matters for QA teams: you can test how CSS media queries actually behave on specific screen sizes across device models.

2. The site has a separate mobile subdomain (e.g., m.example.com)

Some older sites redirect mobile visitors to a dedicated m. subdomain. The desktop site request may not override the redirect logic on those servers.

Fix: Manually type www. in the URL and remove the m. prefix.

3. The site is detecting touch input rather than screen size

A few sites check whether a device supports touch and serve mobile layouts to touch-capable browsers regardless of screen size.

4. Your iOS/browser cache is serving a cached mobile version

Try force-closing Safari, clearing website data, and trying again.

5. The browser didn't register the tap properly

Especially on iOS 18+ with the new Safari layout, this happens. Try again from the beginning of the steps above.

For Developers and QA Testers: Go Further Than the Browser Toggle

The desktop toggle is useful, but it has limits when validating across devices and versions.

  • You can only test on devices you physically own.
  • Cross-version iOS coverage is limited without many devices.
  • Side-by-side comparisons and parallel testing are harder.
  • Automation coverage is limited without cloud infrastructure.

Testing Desktop View on iPhone with TestMu AI

Use TestMu AI to run real iPhone sessions without a device lab.

...
  1. Log in to the dashboard.
  2. Go to Real Device > Browser Testing.
  3. Enter the target URL.
  4. Select iOS and a browser.
  5. Pick model and iOS version.
  6. Click Start.
Select the iPhone model and click Start in TestMu AI real device cloudCloud-based real iOS device spinning up based on selected combinations

Understanding What's Actually Happening (User Agent Switching Explained)

Every browser sends a user agent string with each request. Requesting desktop mode swaps the mobile user agent for a desktop-style one.

Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15
(KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1
Mozilla/5.0 (Macintosh; Intel Mac OS X 14_0) AppleWebKit/605.1.15
(KHTML, like Gecko) Version/18.0 Safari/605.1.15

The physical viewport and touch input do not change. That is why user-agent switching can have limited effects on responsive CSS layouts.

The Bottom Line

The steps are simple once you know where to look and now you do, across every browser and iOS version Apple has thrown at us lately.

One thing worth keeping in mind: if you request desktop mode and the site still looks mobile, it's not you. Most modern sites use responsive CSS that responds to screen width, not user agent, so the layout adapts to your iPhone's viewport regardless of what the browser requests. The troubleshooting section above explains exactly what's going on there.

For developers and QA teams, this is also a good reminder that "request desktop site" is a user-facing feature worth actually testing, not just assuming it works. A quick session on a real device cloud across a few iPhone models can surface issues that a desktop browser never would.

Citations

Author

Deepak Sharma is a B2B SaaS content strategist with 5+ years of experience creating valuable content in the tech space. He has authored 100+ technical articles. At TestMu, he is a content lead, where he develops high-value content for readers. He believes writing isn't about sounding impressive it's about clarity and structure. He holds certifications in Cypress, Appium, Playwright, Selenium, Automation Testing and Kane AI.

Frequently asked questions

Did you find this page helpful?

More Related Hubs

TestMu AI forEnterprise

Get access to solutions built on Enterprise
grade security, privacy, & compliance

  • Advanced access controls
  • Advanced data retention rules
  • Advanced Local Testing
  • Premium Support options
  • Early access to beta features
  • Private Slack Channel
  • Unlimited Manual Accessibility DevTools Tests