padamgurung/daphe/master/.htaccess - Htaccess File

padamgurung/daphe/master/.htaccess

<IfModule mod_rewrite.c>
  
    RewriteEngine On

    RewriteBase /
    
    RewriteCond %{REQUEST_URI} ^my-admin.*
    RewriteRule ^(.*)$ /admin-index.php?url=$1 [QSA,L]

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
    
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache