Regss/movielib/master/.htaccess - Htaccess File

Regss/movielib/master/.htaccess

<IfModule mod_rewrite.c>

    # Tell PHP that the mod_rewrite module is ENABLED.
    SetEnv HTTP_MOD_REWRITE On
    
    RewriteEngine On

    RewriteRule ^index.html$ index.php

    RewriteRule ^(index,[^/]+)-([^/]+)$ $1=$2 [N]
    RewriteRule ^(index,[^/]+),([^/]+)$ $1&$2 [N]

    RewriteRule ^index,([^/]+).html$ index.php?$1
    RewriteRule ^index,(.*)/([^/]+).html$ $1/index.php?$2

</IfModule>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache