Shawnnneee/SIP-Grading-Client/master/Test-API-Server/.htaccess - Htaccess File

Shawnnneee/SIP-Grading-Client/master/Test-API-Server/.htaccess

RewriteEngine on

# Redirect /index.php to / (optional, but recommended I guess)
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /.*index.php
RewriteRule ^index.php/?(.*)$ $1 [R=301,L]

# Run everything else but real files through index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^?]*)$ /SIP-Grading-Client/Test-API-Server/index.php?q=$1 [NC,L,QSA]

ErrorDocument 404 /SIP-Grading-Client/Test-API-Server/index.php?url=%{REQUEST_URI}

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI, THE_REQUEST

Comments

Apache