ideapuff/proving/master/.htaccess - Htaccess File

ideapuff/proving/master/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On

    # RewriteCond %{HTTP_HOST} ^localhost/proving/.*$ [NC]
    RewriteCond %{REQUEST_URI} ^/proving/(.*)$
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?action=$1
</IfModule>

ErrorDocument 404 /index.php

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache