Make website to be able to be called with www on browser
Updated at 2025-10-30 09:02:54
Posted in
(Primary)Website Troubleshooting,
You can set redirect manually by the following guide. Sorry for the inconvenience.
Make website being called without www, and set the one with www to redirect here.
1.Go to cPanel -> File Manager -> DOMAINS -> Redirects.
Or in .htaccess file at
/home/{user_name}/public_html/.htaccess
2. Add rule:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com [NC]
RewriteRule ^(.*)$ https://yourdomain\.com/$1 [L,R=301,NC]
Make your website being called www on browser.
You can ask your host provider to set symlink for you by the following guide.
1. Make sure youhave a website created with RVsitebuilder 7 already.
2. (Your provider) Set symlink
cd
/home/{user-name}/rvsitebuildercms
ln -s domain.com www.domain.com
3. Edit .env file
/home/{user-name}/rvsitebuildercms/domain.com/.env
APP_URL=https://www.domain.com
Posts in Category
-
Images are not display on my website
Admin Updated on 2025-10-30 09:02:54
-
Website favicon is not showing on iOS mobiles
Admin Updated on 2025-10-30 09:02:54
-
Website logo is not showing on Mobile
Admin Updated on 2025-10-30 09:02:54
-
I got "Warning your password has expired." when going to edit website
Admin Updated on 2025-10-30 09:02:54
-
Make website to be able to be called with www on browser
Admin Updated on 2025-10-30 09:02:54
Admin