Skip to content

Instantly share code, notes, and snippets.

View takahiro-saeki's full-sized avatar
🏠
Working from home

hiro takahiro-saeki

🏠
Working from home
View GitHub Profile
RewriteEngine on
# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Redirect http://www. to just http://
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]