create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#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. |
#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 |