The ratings service contained a PHP 4 style code. This change introduces a framework for processing the http-requests so we dont have to do it on our own. It'll also showcase how Instana is usable with modern PHP.
10 lines
275 B
ApacheConf
10 lines
275 B
ApacheConf
DirectoryIndex index.php
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteCond %{ENV:REDIRECT_STATUS} =""
|
|
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ %{ENV:BASE}/index.php [L]
|
|
</IfModule>
|