I’ve inherited a site built with concrete. I can’t seem to find the version that was used.
I’m trying to do a redirect from that website to a new website. ( A DNS redirect?)
I have access to the dashboard, but I can’t figure out how to proceed.
Any help would be greatly appreciated.
Steevb
2
For concrete and php version goto: https://site/index.php/dashboard/system/environment/info
Do you have access to your server, that will give you the option to redirect.
Steevb
4
Redirect with cPanel in .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^oldsite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldsite.com [NC]
RewriteRule ^(.*)$ https://www.newsite.com/$1 [L,R=301,NC]