Web Development

How to Build an Arabic-First Website That Ranks in Google UAE

SKIMBOX Team

A practical guide to building Arabic-first websites for the UAE: URL structure, hreflang, RTL implementation, dialect choices, and what actually ranks in Google UAE in 2026.

How to Build an Arabic-First Website That Ranks in Google UAE

Build dedicated Arabic URLs (not a language switcher that swaps strings on the same URL), write native Arabic content from scratch instead of translating English copy, and ship a real RTL layout that flips icons, paddings, and form fields, not just the text direction. Get those three right and you have a chance in Google UAE. Get them wrong and you stay on page two no matter how much you spend on backlinks.

Why Arabic-first is different from "translated" in 2026

UAE search has shifted. Around 38% of consumer queries on Google.ae now come in Arabic script, and another 20% mix Arabic with English transliteration ("بيتزا near me", "Emirates ID renewal مكان"). Google's Arabic AI overviews rolled out across the Gulf last year, and they pull from sites with genuine Arabic depth, not auto-translated DeepL output.

Translated sites lose for a specific reason. Google reads sentence patterns and entity relationships in Arabic. A translated page has English structure with Arabic vocabulary on top. It reads wrong to natives and ranks below sites written in Arabic from the start. I have seen Dubai SaaS companies with DR 60 sit at position 8 for their main Arabic keyword while a Sharjah competitor at DR 22 sits at position 2, because the latter had a native writer producing original content for two years.

The technical foundation: URLs, hreflang, RTL

For URL structure, pick one of three patterns and commit:

  • example.ae/ar/ subdirectory: cheapest to run, inherits domain authority, easiest to manage in Next.js or WordPress. This is the default I recommend for 90% of UAE businesses.
  • ar.example.com subdomain: useful when the Arabic site is run by a separate team with its own stack.
  • example.ae versus example.com: a UAE ccTLD gives a small but real geo-signal boost in Google UAE. Pair it with a /ar/ subdirectory for the best of both.

Hreflang is where most Dubai sites quietly break. The minimum set you need:

<link rel="alternate" hreflang="ar-AE" href="https://example.ae/ar/page" />
<link rel="alternate" hreflang="en-AE" href="https://example.ae/en/page" />
<link rel="alternate" hreflang="ar-SA" href="https://example.ae/ar/page" />
<link rel="alternate" hreflang="x-default" href="https://example.ae/en/page" />

Add return tags on every page (the AR page must reference the EN page and vice versa). Validate in Google Search Console under the International Targeting report. If you are chasing Saudi traffic spillover, add ar-SA pointing to your UAE Arabic page; Google treats Gulf Arabic content as relevant across the GCC.

RTL is not a dir="rtl" attribute and a prayer. In Next.js, set <html dir="rtl" lang="ar"> based on the locale segment. In Tailwind, use the rtl: and ltr: variants for padding, margin, and flex direction. Mirror directional icons (arrows, chevrons, progress bars). Use logical CSS properties (margin-inline-start over margin-left) so one component works both ways.

For fonts, Cairo and Tajawal render well at UAE body sizes (14-16px). IBM Plex Sans Arabic is strong for editorial sites. All three are free, self-hostable, and tuned for screens. Avoid system Arabic fonts; rendering varies wildly across Safari, Chrome, and the Samsung browser.

Arabic SEO that actually moves rankings

Run keyword research in Ahrefs or Semrush with country set to UAE and keyword language to Arabic. Pull the main keyword (كلمة مفتاحية) and its synonyms; Arabic morphology means one English term often maps to 4-6 Arabic variants. Example pairs:

  • "web development Dubai" (1,900/mo) maps to "تصميم مواقع دبي" (2,400/mo) and "تطوير مواقع الإمارات" (880/mo).
  • "ERP software UAE" (720/mo) maps to "برنامج ERP الإمارات" (1,100/mo) and "نظام إدارة موارد المؤسسة" (390/mo).

UAE searchers mix scripts constantly. Target the pure-Arabic query but include transliterated brand names in the body. Set Article.inLanguage to ar (not ar-AE) and add dc:language metadata for older crawlers. Arabic FAQ schema earns rich results about 40% more often than the English equivalent.

Content that ranks for Arabic queries in UAE

Translation is the wrong frame. Adaptation is what you want. A direct translation of "We deliver enterprise-grade solutions" reads, in Arabic, like a 2008 government press release. A native writer would land on "نبني لك حلولاً تشتغل من اليوم الأول" (We build you solutions that work from day one). Different rhythm, same intent.

Hire human Arabic writers. Rates in the UAE start around AED 130-220 per 500 words for general business copy and AED 230-330 for legal, finance, or medical content. Use Modern Standard Arabic (MSA) for B2B, government-facing, and corporate pages; this is what Emirati nationals and educated GCC readers expect. Use Gulf flavour for retail, F&B, and consumer apps.

Plan for Saudi traffic. Around 30-40% of Arabic search traffic to UAE content sites comes from Saudi. Skip heavy Emirati slang, lean MSA with Gulf vocabulary, and you will rank in both markets.

Technical implementation choices

PlatformRTL SupportPerformanceBuild Cost (AED)Annual Maintenance
WordPress + WPMLMature, plugin-drivenAverage; needs caching4,500 - 18,0007,200 - 18,000
Webflow + WeglotLimited; CSS hacks requiredGood6,000 - 22,0003,600 - 12,000
Next.js + Sanity/StrapiFull control via next-intlExcellent15,000 - 60,00014,400 - 36,000

WordPress is the right call under AED 20k when you have a content team that needs a familiar editor. Webflow works for marketing sites but its RTL story is patchy; expect custom code. Next.js with a headless CMS is the option for teams that need real Core Web Vitals, a custom design, or an app roadmap. Most freezone tech businesses we work with land on Next.js plus Sanity.

Common mistakes Dubai businesses make

  1. Machine-translating product names and category pages. Google indexes the garbage and your brand looks unprofessional.
  2. Missing hreflang return tags. One-way hreflang is treated as broken and effectively ignored.
  3. Setting font-family: 'Inter' without an Arabic fallback. On Windows it falls back to default Arabic, which looks like a 2003 PDF.
  4. Ignoring Bing. Bing holds 8-12% of UAE desktop search and is the default in many government offices. Submit your sitemap.
  5. Mirroring English layouts pixel for pixel. RTL is not "English flipped". Test with native readers.
  6. Forgetting the Samsung browser. It is the default on roughly 35% of UAE Android devices and renders Arabic differently from Chrome.
  7. No Arabic alt text on images. Easy win; almost everyone misses it.

Frequently asked questions

  • What is an Arabic-first website?

    A website where Arabic is the primary language and the layout, typography, and tone are designed for native Arabic readers from day one, not bolted on as a translation. The English version becomes the secondary version. This is the right approach when your primary buyer is Emirati, Khaleeji, or a GCC government audience.

  • Why does Google UAE rank native Arabic sites above translated ones?

    Google reads sentence patterns and entity relationships in Arabic, not just vocabulary. A translated page carries English structure with Arabic words layered on top, which reads wrong to natives and signals low quality. Sites written in Arabic from the start consistently outrank higher-authority translated competitors on the same keyword.

  • What hreflang tags do I need for a UAE Arabic site?

    At minimum, ar-AE pointing to the Arabic page, en-AE pointing to the English page, ar-SA pointing to the same Arabic page if you want Saudi spillover, and x-default pointing to English. Every page must reference the others as return tags, or Google treats the setup as broken and ignores it.

  • Should I use a subdirectory, a subdomain, or a separate ccTLD for Arabic?

    A subdirectory like example.ae/ar/ is the default for 90 percent of UAE businesses. It inherits domain authority, is cheap to run, and is easy to manage. Use a subdomain when a separate team owns the Arabic stack. A .ae ccTLD adds a small geo-signal boost over .com.

  • Does a .ae domain rank higher in Google UAE than a .com?

    Marginally yes. A .ae ccTLD gives a geo-targeting signal that a .com does not, though you can match part of it by setting country targeting in Search Console. The bigger win from .ae is buyer trust, since UAE searchers click .ae results more often in the SERP.

  • What is the difference between Modern Standard Arabic and Khaleeji on a website?

    Modern Standard Arabic, or Fusha, is the formal written form used in news, government, and corporate sites across the UAE. Khaleeji is the spoken Gulf dialect. Use MSA for B2B, government, and corporate pages, and add Khaleeji flavour for retail, F&B, and consumer apps where tone matters.

  • Is transcreation different from translation?

    Yes. Translation maps words one to one. Transcreation rebuilds the message in the target language so it reads natively, with adjusted rhythm, idioms, and calls to action. We build you solutions that work from day one reads as marketing in Arabic. A direct translation of enterprise-grade solutions reads like a 2008 press release.

  • Can I use Google Translate for the Arabic version?

    No. Google explicitly devalues machine-translated content without human review. The pages will be indexed but will not rank for competitive Arabic keywords, and native readers bounce within seconds. Use machine translation only as a draft, then have a native UAE writer edit every page line by line.

  • What does RTL implementation actually require in 2026?

    Far more than a dir="rtl" attribute. You need html dir and lang set per locale, Tailwind rtl: and ltr: variants for spacing and flex direction, logical CSS properties like margin-inline-start, mirrored directional icons, and form labels aligned to the right. Plan for 15 to 30 percent additional design and build effort.

  • Which Arabic fonts should I use for a UAE site?

    Cairo, Tajawal, and IBM Plex Sans Arabic all render cleanly at 14 to 16 pixel body sizes. They are free, self-hostable, and tuned for screens. Avoid system Arabic fonts, since rendering varies wildly between Safari, Chrome, and the Samsung browser, which is the default on roughly 35 percent of UAE Android devices.

  • How does Arabic schema markup affect rich results?

    Set Article.inLanguage to ar rather than ar-AE for broader GCC coverage, and add dc:language metadata for older crawlers. Arabic FAQ schema earns rich results about 40 percent more often than the English equivalent, because the competitive surface is thinner and Google rewards properly marked native Arabic content.

  • How do I run keyword research for Arabic UAE search?

    Use Ahrefs or Semrush with country set to UAE and keyword language set to Arabic. Pull the main term plus four to six morphological variants per English keyword. Web development Dubai maps to تصميم مواقع دبي and تطوير مواقع الإمارات, with different volumes and intent for each variant.

  • How long does it take to rank for Arabic keywords in Google UAE?

    For a new domain in a competitive niche, plan six to nine months to reach page one for medium-volume Arabic keywords. Lower competition niches like industrial services or B2B specialties can rank in three to four months with consistent native content output and proper hreflang from launch.

  • Will my Arabic pages also rank in Saudi Arabia?

    Usually yes, if you lean on Modern Standard Arabic with Gulf vocabulary and avoid heavy Emirati slang. Around 30 to 40 percent of Arabic traffic to UAE content sites comes from Saudi. Add ar-SA hreflang pointing to your UAE Arabic page, and Google treats it as relevant across the GCC.

  • How do I track Arabic keywords in Google Search Console?

    Filter the Performance report by query and paste Arabic terms directly, or filter by page using your /ar/ path. Group results by country to separate UAE, Saudi, and Egypt traffic. Validate hreflang under the International Targeting section, and watch for one-way hreflang warnings, which silently kill ranking.

  • What are the most common Arabic SEO mistakes UAE businesses make?

    Machine-translating product names, missing hreflang return tags, setting Inter without an Arabic fallback font, ignoring Bing which holds 8 to 12 percent of UAE desktop search, mirroring English layouts pixel for pixel instead of redesigning for RTL, and skipping Arabic alt text on images. Each one costs ranking positions.

SKIMBOX Team

Tech Consultancy

Get fresh writing in your inbox

One email a fortnight. No filler.

By subscribing, you agree to our privacy policy.

Want us to build something?

We work with teams across MENA, UK, USA, and India to build products, run programs, and grow.

Get in touch

Continue reading