-1
My doubt is in the escalation of .htaccess
, because I can only make the root of my site the folder public_html
or some other folder inside public_html
, but I need a folder that’s one level up.
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.meusite.com.br/$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.meusite.com.br/$
RewriteCond %{REQUEST_URI} !meudiretorio/
RewriteRule (.*) /meudiretorio/$1 [L]
Being your directory
/var/www/public_html
, you need to access/var/www/outra_pasta
?– lcssanches
Exactly, I want my root folder to be another.
– Tecnologia Grupo Posture