Let us now understand how to perform Landing Pages custom domains.
Vtiger does not support CNAME based redirections for Landing Page yet.
But you can still use your custom domain configuration in the server for redirections to the Landing Page.
For Instance, if your domain server is under Apache
- Enable proxy
- a2enmod proxy
- a2enmod proxy_http
- Updating Configuration
- File name /etc/apache2/sites-available/yourdomain.com.conf
- Append these lines
- SSLProxyEngine On
- SSLProxyCheckPeerCN on
- SSLProxyCheckPeerExpire on
- ProxyPass / https://customdomain.com/path
- ProxyPassReverse / https://landing_page_url
Now, when you access https://customdomain.com/path the URL remains the same, but the inclusive content will be the Landing Page content only.
To know more about Landing Pages, click here.