@domenico.weimann
To redirect to the upper directory using .htaccess, you can use the following RewriteRule in your .htaccess file:
1
|
RewriteRule ^(.*)$ ../$1 [L,R=301] |
Here's what this rule does:
Make sure to place this rule in the .htaccess file located in the directory from where you want to redirect to the upper directory.