This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#From: http://support.lunarpages.com/knowledge_bases/article/549 | |
# .htaccess primary domain to subfolder redirect | |
# Copy and paste the following code into the .htaccess file | |
# in the public_html folder of your hosting account | |
# make the changes to the file according to the instructions. | |
# Do not change this line. | |
RewriteEngine on | |
# Change yourdomain.com to be your primary domain. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create a folder subdomain, and make it work like a domain. | |
RewriteCond %{HTTP_HOST} mysite.com.ar | |
RewriteCond %{REQUEST_URI} !^/mysite #mysite_folder | |
RewriteRule ^(.*)$ mysite/$1 [L] #mysite_folder |
NewerOlder