File: //opt/proundcontra.mosmuc.de/.htaccess
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php82” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php82 .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
# Make sure mod_rewrite is turned on:
RewriteEngine On
# If the requested file or directory already exists, don’t rewrite:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite /login to login.php
RewriteRule ^login/?$ login.php [L,QSA]
# Rewrite /signup to signup.php
RewriteRule ^signup/?$ signup.php [L,QSA]
# (Optional) If you have other rewrites, keep them below/above as needed