This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //- パースしたJSONデータを格納するグローバル変数 | |
| - var data = {} | |
| //- JSON 構文をパースしてグローバル変数の data にデータを格納する mixin | |
| mixin json(name) | |
| - var oldbuf = buf | |
| - buf = [] | |
| block | |
| - data[name] = JSON.parse(buf.join('')) | |
| - buf = oldbuf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Action myphp-script /php.cgi | |
| AddHandler myphp-script .php .html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RewriteEngine on | |
| RewriteBase / | |
| RewriteRule ^_redirect\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /_redirect.php [L] |