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:
Addlanguage={languageCode}
to the URL.
Example (Spanish):https://app.fone.ai/auth/login/?donotShowSignup=true&language=es
Default:
en
(English) -
Change color mode:
AddcolorMode={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
- Log into your Cloudflare dashboard.
- In Cloudflare, go to Rules → Page Rules.
- Click Create Page Rule.
- Under If the URL matches, enter:
ai.yourdomain.com/*
- Under Then the settings are:
- Choose Forwarding URL
- Select 301 - Permanent Redirect
- Enter the destination URL:
(Add query parameters for language/color mode as desired)
https://app.fone.ai/auth/login/?donotShowSignup=true
- Click Save and Deploy.
- 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
- Log into your GoDaddy account.
- Select My Products → Find your domain → Click DNS.
- Scroll to Forwarding → Domain → Click Add.
- In Forward to, enter:
https://app.fone.ai/auth/login/?donotShowSignup=true
- Set Forward type to
Permanent (301)
and Settings toForward only
. - Save.
Namecheap
- Log into your Namecheap dashboard.
- Select Domain List → Click Manage next to your domain.
- Go to the Advanced DNS tab.
- Under Host Records, click Add New Record:
- Type:
CNAME Record
- Host:
ai
- Value:
app.fone.ai
- TTL:
Automatic
- Type:
- 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)
- Save changes.
AWS Route 53
- Log into AWS Console → Go to Route 53.
- Select your hosted zone for
yourdomain.com
. - Create a new CNAME record:
- Name:
ai
- Value:
app.fone.ai
- TTL: 300
- Name:
- Save the record.
- 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
- Log into your Google Domains account.
- Select your domain.
- Go to Website → Forward domain.
- Click Add a subdomain forward.
- In Subdomain, enter:
ai
. - In Destination URL, enter:
https://app.fone.ai/auth/login/?donotShowSignup=true
- Set Forward type to
Permanent redirect (301)
and enable Forward path if available. - 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
andmod_proxy_http
are enabled.