Bir FTP, mysite adlı web sitem var.
/index.php which is my real site
/preprod/index.php, which is my pre-production website
Preprod web sitesini yeni gelen herkes tarafından görülebilir yapmak, ancak gerçek siteye erişmek için gizli bir URL girebilmek istiyorum.
Aşağıdaki .htaccess inşa ettik:
RewriteEngine on
RewriteRule mysite.com/secret mysite/preprod/index.php [L,R=301]
Redirect /index.php /preprod/index.php
"404 hatası" aldım
Dosyamı nasıl düzeltebilirim?