Error:
Not found RVSiteBuilder CMS App in .:/opt/alt/php73/usr/share/pear
Please contact your provider with info:
1. RVSitebuilder CMS App have not install.
2. Not found vendor path.
3. Your PHP version not compatible, Our system require PHP 7.1+
Reason:
To publish website to a domain without www it will not mean to be effect to the one with www, but you can fix it in your control panel.
Solution:
To make your website to be called both with and without www, you can set a redirect from the other to the main one in cpanel.
In .htaccess
Go to cPanel -> File Manager
At /home/{user_name}/public_html/.htaccess
Insert above #Start Rvsitebuilder7 htaccess
What to insert:
1) Website WITHOUT https://
#Redirect to non-WWW case non-ssl RewriteEngine on RewriteCond %{HTTP_HOST} ^www.your-domain.com [NC] #redirect to the secure version RewriteRule ^(.*)$ http://your-domain.com/$1 [L,R=301,NC]
2) Website WITH https://
#Redirect to non-WWW case non-ssl RewriteEngine on RewriteCond %{HTTP_HOST} ^www.your-domain.com [NC] #redirect to the secure version RewriteRule ^(.*)$ https://your-domain.com/$1 [L,R=301,NC]
Comments
0 comments
Article is closed for comments.