hello can someone help me on this one current domain name: www.mydomain.com/STUPIDFOLDER i just want domain.com without folder name www.mydomain.com Thankd advance
Is the domain yours? If so, please post back what is currently in your .htaccess file to see what is the next step to get rid of the folder name.
Remove the above code and try this out: RewriteEngine on RewriteCond %{HTTP_HOST} ^mydomain.com/STUPIDFOLDER $ [OR] RewriteCond %{HTTP_HOST} ^www.mydomain.com/STUPIDFOLDER $ RewriteRule ^(.*)$ www.mydomain.com [R=301,L] Code (markup):
i got internal error .... also my curent domain look like this www.mydomain.com/FOLDER/index.php i want to: www.mydomain.com/index.php without the folder name Thanks
Yes, it should work fine. However Unlisted80, if you want to make sure your redirection goes to index.php, do it this way: RewriteEngine on RewriteCond %{HTTP_HOST} ^mydomain.com/STUPIDFOLDER $ [OR] RewriteCond %{HTTP_HOST} ^www.mydomain.com/STUPIDFOLDER $ RewriteRule ^(.*)$ http://www.mydomain.com/index.php [R=301,L] Code (markup):