oramoetaro
oramoetaro

Reputation: 563

Redirect all folder traffic to an specific file via htaccess

I'm trying to redirect all traffic of directory...

https://subdomain.mydomain.com/folder/ to https://subdomain.mydomain.com/folder/myfile.html

I have an htaccess file into directory "folder" with this content...

Redirect 302 / /myfile.html

But when I type https://subdomain.mydomain.com/folder/ it redirects to https://subdomain.mydomain.com/myfile.htmlfolder/

So, what is the correct way to do that?

Thanks.

Upvotes: 1

Views: 68

Answers (1)

anubhava
anubhava

Reputation: 785651

You can use this code inside folder/.htaccess:

RewriteEngine On

RewriteRule ^myfile\.html$ - [L,NC]

RewriteRule ^ myfile.html [L]

Upvotes: 1

Related Questions