Execute the below to prevent .DS_Store from ever being included in any of your git repose.
git config --global core.excludesfile ~/.gitignore
echo .DS_Store >> ~/.gitignore
Execute the below to prevent .DS_Store from ever being included in any of your git repose.
git config --global core.excludesfile ~/.gitignore
echo .DS_Store >> ~/.gitignore
Just Add:
RewriteEngine on RewriteCond %{HTTPHOST} !^www.domain.com [NC] RewriteCond %{HTTPHOST} !^$ RewriteRule ^/?(.*) http://www.domian.com/$1 [L,R=301,NE]