frontend-london/frontend.london/master/_.htaccess - Htaccess File

frontend-london/frontend.london/master/_.htaccess

DirectoryIndex index.php index.html index.htm index.php3
Options -Indexes

RewriteEngine on
# wlaczenie mechanizmu mod_rewrite

RewriteBase /

RewriteRule ^cv.pdf$ cv.php?wersja=en [L]
RewriteRule ^cv_pl.pdf$ cv.php?wersja=pl [L]

RewriteCond %{HTTP_HOST} !^frontend.london
RewriteRule ^(.*)$ http://frontend.london/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# omija regule gdy pliki fizycznie istnieja

#RewriteRule ^.*.html$ index.php [QSA]
RewriteRule ^.*$ index.php [QSA]

# NUMER.php [QSA] = przekazuj parametry

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME

Comments

Apache