Skip to content

Instantly share code, notes, and snippets.

View inoutech's full-sized avatar

InOutPublishing inoutech

View GitHub Profile
@inoutech
inoutech / htaccess_mod_rewrite_rules
Created September 24, 2012 02:14
Mobile Detection and Redirection
mod_rewrite_rules#
#This is placed in the htaccess folder. Any lines biginning with the pound sign in it is ignored
RewriteEngine On
# If the user is asking for the fullsite, set a cookie, remove the query, and stop.
RewriteCond %{QUERY_STRING} ^fullsite$
RewriteRule ^/?(.*)$ http://domain.com/$1? [L,CO=fullsite:yes:.domain.com]
# If the user is asking for the mobilesite, set a cookie, remove the query, redirect and stop.
RewriteCond %{QUERY_STRING} ^mobilesite$