I have a folder with one file and i need access to it using only the Folder name. This is basically the struct:
For example: When i go to "http://example.com/Folder/" i need to redirect me to "http://example.com/Folder/File.ext".
I tried with ".htaccess" but not achieved what I need:
RewriteEngine On
RewriteBase /
RewriteRule ^/Folder/$ /Folder/*.ext
Exists some regular expression to solve this problem with htaccess? or some other solution to this problem?
Aclaration: the folder only contains one file, and this file have a random name.