BerlinTech/nibbleblog/master/.htaccess - Htaccess File

BerlinTech/nibbleblog/master/.htaccess

Options +FollowSymlinks
Options -Indexes

# Disable Magic Quotes
<IfModule mod_php5.c>
  php_flag magic_quotes_gpc                 off
  php_flag magic_quotes_sybase              off
</IfModule>

# Enable expirations, 2 weeks
<IfModule mod_expires.c>
  ExpiresActive On

  ExpiresDefault A1209600

  <FilesMatch .php$>
    ExpiresActive Off
  </FilesMatch>
</IfModule>

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /nibbleblog/
  RewriteRule ^dashboard admin.php?controller=user&action=login [L]
  RewriteRule ^feed feed.php [L]
  RewriteRule ^category/([^/]+)/page-([0-9]+)$ index.php?controller=blog&action=view&category=$1&page=$2 [L]
  RewriteRule ^category/([^/]+)/$ index.php?controller=blog&action=view&category=$1&page=0 [L]
  RewriteRule ^page-([0-9]+)$ index.php?controller=blog&action=view&page=$1 [L]
  RewriteRule ^post-([0-9]+)/(.*)$ index.php?controller=post&action=view&id_post=$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache