나는 FTP, mysite에 웹 사이트를 가지고있다.
/index.php which is my real site
/preprod/index.php, which is my pre-production website
프리폼 웹 사이트를 신규 사용자가 볼 수있게 만들고 싶지만 실제 사이트에 액세스하려면 비밀 URL을 입력 할 수 있어야합니다.
나는 다음과 같은 .htaccess 파일을 만들었습니다.
RewriteEngine on
RewriteRule mysite.com/secret mysite/preprod/index.php [L,R=301]
Redirect /index.php /preprod/index.php
'404 오류'가 있습니다.
파일을 어떻게 수정합니까?