This file contains 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
<?php | |
/** | |
* @package RyuFramework | |
* @version 1.0-21 | |
* @author shinryu | |
* | |
*------------------ | |
* {signature} | |
*------------------ | |
**/ |
This file contains 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
Options All -Indexes | |
RewriteEngine on | |
RewriteCond %{HTTP_HOST} ^{domain}$ [NC,OR] | |
RewriteCond %{HTTP_HOST} ^{domain}$ | |
RewriteCond %{REQUEST_URI} !public/ | |
RewriteRule (.*) /public/$1 [L] | |
# START BAD BOTS ### DO NOT EDIT THIS LINE AT ALL ### | |
BrowserMatchNoCase "(?:\b)360Spider(?:\b)" bad_bot |
This file contains 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
<?php | |
// -------------------------------------------------------------------------------- | |
// PhpConcept Library - Zip Module 2.8.2 | |
// -------------------------------------------------------------------------------- | |
// License GNU/LGPL - Vincent Blavet - August 2009 | |
// http://www.phpconcept.net | |
// -------------------------------------------------------------------------------- | |
// | |
// Presentation : | |
// PclZip is a PHP library that manage ZIP archives. |