Options -Indexes <IfModule mod_rewrite.c> Options -Indexes RewriteEngine On RewriteBase /blog # Force to exclude the trailing slash RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.*)/$ RewriteRule ^(.+)/$ $1 [R=307,L] # Allow any files or directories that exist to be displayed directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1 [QSA,L] </IfModule>
girish-l/blog-simple-mvc/master/.htaccess
