Answer the question
In order to leave comments, you need to log in
Redirect from folder to file?
Hello! I need to redirect from https://profi-promotion.rf/acount to https://profi-promotion.rf/acount/login.php how to do it?
Answer the question
In order to leave comments, you need to log in
Create an index.php file in the /acount folder and write the redirect in it:
1. via JS:
<script>
document.location.href = '/acount/login.php';
</script>
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://профи-продвижение.рф/acount/login.php");
exit();
?>
Apache2
Rewrite ^account$ /account/login.php [R=301,L]
Nginx
rewrite ^account$ /account/login.php permanent;
You write what kind of environment you have there, otherwise you need a redirect and that’s the point
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question