Problem with .htaccess MU Engine Web
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:
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]
thnks!
Re: Problem with .htaccess MU Engine Web
Re: Problem with .htaccess MU Engine Web
PHP Code:
RewriteRule ^(folder|folder|folder)($|/) - [L]
Re: Problem with .htaccess MU Engine Web