How can I change the default index file for my site?
The issue is due to an index.html file taking precedence over index.php. To change the default index order, create or edit a .htaccess file with: DirectoryIndex index.php index.ht…
Shared hosting | Seme-dedicated | Free resellers
The issue is due to an index.html file taking precedence over index.php. To change the default index order, create or edit a .htaccess file with: DirectoryIndex index.php index.ht…
You can add the following headers to your .htaccess file: Header set Access-Control-Allow-Origin "*" Header set Access-Control-Allow-Origin "https://neededurl" Adjust the domain a…
Add this to your root .htaccess file: RewriteEngine on RewriteRule ^(.*)$ http://www.newdomain.com/ [R=301,L] This will redirect all requests to your new domain. Looking forward t…
Use Advanced > URL Redirection in your control panel: https://us.cloudlogin.co/advanced/url-redirection/ Click "Add a Redirection" and select the domain. Enter your destination…
Create a .htaccess file with the following: RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,NC] Replace domain.com wi…
Homepages must be named using lowercase: index.html or index.php. Alternatively, change the default index order in .htaccess using: DirectoryIndex Index.html index.html index.php …