Listing 7.5. Zmodyfikowany plik public_html/.htaccess
AddHandler x-httpd-php53 .php
Allow from all
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>