| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/hkosl.com/nick/codeigniter/ |
Upload File : |
### ip restriction sample
#order deny,allow
#deny from all
#allow from 223.255.164.254
#allow from 103.232.90.254
RewriteEngine On
## Begin - Security
# Block all direct access for these folders
#RedirectMatch 403 (.git|tests|.AbiSuite|nbproject|.idea)
# Block access to specific file types for these system folders
#RedirectMatch 403 (vendor)/(.*)\.(txt|xml|md|html|yaml|php|pl|py|cgi|twig|sh|bat|dist|json|exe)
# Block all direct access to .md files:
#RedirectMatch 403 \.md
# Block access to specific files in the root folder
#RedirectMatch 403 (composer.lock|composer.json|\.htaccess|LICENSE)
## End - Security
#forbiden extension with ed
RewriteRule \.(ed)$ - [F]
#forbidden dir
RedirectMatch 403 (assets/files/news/base64_img/)
#RewriteBase /codeigniter
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|assets|images|robots\.txt|css)
RewriteRule ^(.*)$ index.php?/$1 [L]
# One year for image files
<filesMatch ".(jpg|jpeg|png|gif|ico)$">
Header set Cache-Control "max-age=31536000, public"
</filesMatch>
# One month for css and js
<filesMatch ".(css|js)$">
Header set Cache-Control "max-age=2628000, public"
</filesMatch>
# CodeIgniter environment (development / testing / production)
SetEnv CI_ENV development