DILL44/euradio/master/web/.htaccess - Htaccess File

DILL44/euradio/master/web/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{QUERY_STRING} page=eurocities
  RewriteRule ^(.*)$  /article/eurocities? [R=301,L]
  
  RewriteCond %{REQUEST_URI} ^/recrutement/recrutement.html$
  RewriteRule ^(.*)$  /article/recrutement [R=301,L]
  
  RewriteCond %{HTTP_HOST} dev.euradionantes.eu
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ app_dev.php [QSA,L]
  
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ app.php [QSA,L]
    
</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, QUERY_STRING, REQUEST_FILENAME, REQUEST_URI

Comments

Apache