Minulla on yksi domain, joka pitäisi saada suunnattua sivutilaani. Siinä on jo ip ja url-osoite asennettu toiselta palvelimelta sivuilleni.
Mitenkähän tuon saisi vastaanotettua htaccess tiedostossa, jotta alkaa toimimaan?
Laita domainin DNS-tietoihin palvelimen IP-osoite ja säädä HTTP-palvelimen konffeja siten, että se antaa oikean sivuston tuolla domainilla. htaccessilla ei ole tekemistä tämän kanssa, vai mitä oikein yrität saada aikaan?
http://www.webconfs.com/how-to-redirect-a-webpage.php
lainaus:
Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]Please REPLACE www.newdomain.com in the above code with your actual domain name.
Ja lisäys edelliseen.
Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.
Kiitos linkistä
Aihe on jo aika vanha, joten et voi enää vastata siihen.