Skip to main content

Domain Masking

You can use your own domain to host Fone AI, making the URL look branded.
For example, you can make ai.yourdomain.com point to the Fone AI console while keeping ai.yourdomain.com visible in the browser address bar.


Target Forwarding URL​

The domain should be forwarded to:

https://app.fone.ai/auth/login/?donotShowSignup=true

Optional Query Parameters​

  • Change login language:
    Add language={languageCode} to the URL.
    Example (Spanish):

    https://app.fone.ai/auth/login/?donotShowSignup=true&language=es

    Default: en (English)

  • Change color mode:
    Add colorMode={dark|light} to the URL.
    Example (Dark Mode):

    https://app.fone.ai/auth/login/?donotShowSignup=true&colorMode=dark

    Default: light

You can combine parameters:

https://app.fone.ai/auth/login/?donotShowSignup=true&language=es&colorMode=dark

Provider-Specific Setup Instructions​

Cloudflare​

  1. Log into your Cloudflare dashboard.
  2. In Cloudflare, go to Rules → Page Rules.
  3. Click Create Page Rule.
  4. Under If the URL matches, enter:
    ai.yourdomain.com/*
  5. Under Then the settings are:
    • Choose Forwarding URL
    • Select 301 - Permanent Redirect
    • Enter the destination URL:
      https://app.fone.ai/auth/login/?donotShowSignup=true
      (Add query parameters for language/color mode as desired)
  6. Click Save and Deploy.
  7. Now, when you visit ai.yourdomain.com, it will show your branded subdomain in the address bar while loading the Fone AI login screen.

GoDaddy​

  1. Log into your GoDaddy account.
  2. Select My Products → Find your domain → Click DNS.
  3. Scroll to Forwarding → Domain → Click Add.
  4. In Forward to, enter:
    https://app.fone.ai/auth/login/?donotShowSignup=true
  5. Set Forward type to Permanent (301) and Settings to Forward only.
  6. Save.

Namecheap​

  1. Log into your Namecheap dashboard.
  2. Select Domain List → Click Manage next to your domain.
  3. Go to the Advanced DNS tab.
  4. Under Host Records, click Add New Record:
    • Type: CNAME Record
    • Host: ai
    • Value: app.fone.ai
    • TTL: Automatic
  5. If you need to redirect to the full login URL with query parameters:
    • Use URL Redirect Record instead.
    • Host: ai
    • Value: https://app.fone.ai/auth/login/?donotShowSignup=true
    • Type: Permanent (301)
  6. Save changes.

AWS Route 53​

  1. Log into AWS Console → Go to Route 53.
  2. Select your hosted zone for yourdomain.com.
  3. Create a new CNAME record:
    • Name: ai
    • Value: app.fone.ai
    • TTL: 300
  4. Save the record.
  5. If you want to preserve query parameters (language, color mode), set up an AWS CloudFront distribution or Application Load Balancer to handle HTTP forwarding to the full Fone AI login URL.

Google Domains​

  1. Log into your Google Domains account.
  2. Select your domain.
  3. Go to Website → Forward domain.
  4. Click Add a subdomain forward.
  5. In Subdomain, enter: ai.
  6. In Destination URL, enter:
    https://app.fone.ai/auth/login/?donotShowSignup=true
  7. Set Forward type to Permanent redirect (301) and enable Forward path if available.
  8. Save and apply.

Other Domains​

If you use ChatGPT, Gemini, or another AI assistant, you can quickly get provider-specific forwarding steps by asking:

"Give me step-by-step instructions to forward a subdomain ai.mydomain.com to https://app.fone.ai/auth/login/?donotShowSignup=true while keeping ai.mydomain.com in the browser address bar, using [PROVIDER NAME] as the domain provider."

Replace [PROVIDER NAME] with your other registrar, e.g., "Bigrock", etc


Reverse Proxy (Self-Hosted Servers)​

If you control your own VPS or hosting environment, you can set up Nginx or Apache to proxy ai.yourdomain.com to Fone AI and keep the branded URL.


Nginx Configuration​

server {
listen 80;
server_name ai.yourdomain.com;

location / {
proxy_pass https://app.fone.ai/auth/login/?donotShowSignup=true;
proxy_set_header Host app.fone.ai;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}

Apache Configuration​

<VirtualHost *:80>
ServerName ai.yourdomain.com

ProxyPreserveHost On
ProxyPass / https://app.fone.ai/auth/login/?donotShowSignup=true
ProxyPassReverse / https://app.fone.ai/auth/login/?donotShowSignup=true
</VirtualHost>

Make sure Apache modules mod_proxy and mod_proxy_http are enabled.