Hello, I am using a web, it uses a .htaccess that is giving me some problems ... The problem is that I can not use subfolders, ie mydomain.com works but I can not login to mydomain.com/forum ... I have to do it if or if through a subdomain, I would like to know how to avoid this. I leave the .htaccess below:
thnks!Code:RewriteEngine on RewriteCond %{REQUEST_URI} !^/admincp/$ [NC] RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)/([a-zA-Z0-9\/]+)/?$ index.php?page=$1&subpage=$2&request=$3 [QSA] RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)/?$ index.php?page=$1&subpage=$2 [QSA] RewriteRule ^([a-zA-Z0-9]+)/?$ index.php?page=$1 [QSA]





