There is such a structure of directories:
/public_html
/abc
.htaccess
Now all requests go to the folder /public_html. This is the code of .htaccess:
RewriteEngine on
RewriteCond %{REQUEST_URI} !public_html/
RewriteRule (.*) /public_html/$1 [L]
What should I do for that the requests like [the website address]/abc/*
redirect to the folder /abc instead of /public_html?
Something like that:
example.com/* - go to /public_html
example.com/abc/* - go to /abc
Thanks! And I'm sorry for my English!