root/trunk/iPhoneTemplateSet/htaccess_sample.txt

Revision 1173, 0.6 kB (checked in by kaminogoya, 14 months ago)

Added the 'automatically hide addressbar' script to index and entry template.

Line 
1#If you want to have a peculiar page to iPhone displayed with same URL as PC.
2
3# Your blog URL style is http://example.com/, the code is added to .htaccess (http://example.com/.htaccess)
4
5RewriteEngine on
6RewriteCond %{HTTP_USER_AGENT} (iPhone|iPod)
7RewriteCond %{REQUEST_URI} !^/m/
8RewriteRule ^(.*)\.html$ /m/$1.html [L]
9
10# Your blog URL styles is http://example.com/blog/, the code is added to .htaccess (http://example.com/blog/.htaccess)
11
12Rewriteengine onq
13RewriteCond %{HTTP_USER_AGENT} (iPhone|iPod)
14RewriteCond %{REQUEST_URI} !/m/
15RewriteRule /blog/(.*)\.html$ /blog/m/$1.html [L]
16
Note: See TracBrowser for help on using the browser.