|
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 | |
|---|
| 5 | RewriteEngine on |
|---|
| 6 | RewriteCond %{HTTP_USER_AGENT} (iPhone|iPod) |
|---|
| 7 | RewriteCond %{REQUEST_URI} !^/m/ |
|---|
| 8 | RewriteRule ^(.*)\.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 | |
|---|
| 12 | Rewriteengine onq |
|---|
| 13 | RewriteCond %{HTTP_USER_AGENT} (iPhone|iPod) |
|---|
| 14 | RewriteCond %{REQUEST_URI} !/m/ |
|---|
| 15 | RewriteRule /blog/(.*)\.html$ /blog/m/$1.html [L] |
|---|
| 16 | |
|---|