jayrex24/social_bug/master/.htaccess - Htaccess File

jayrex24/social_bug/master/.htaccess

<IfModule mod_rewrite.c>
     
    RewriteEngine On
    RewriteBase /
 
    # Disable rewrite for valid directory/files     
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d 
 
    #map all request urls to a specific controller method
    RewriteRule ^(.*)$ index.php?/{controller}/{method}/$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache