@phenomlab there is no cms yet, I program the whole thing first. It is now just a small php website with subpages that are accessed via index.php?page=aboutus z.b. I just have to change the webserver now that it converts dynamic urls to seo urls
example
riekmedia.dev/index.php?page=aboutus
new url
riekmedia.dev/page/aboutus
with apache you could solve this via htaccess with Rewrite Rule
example
# BEGIN RIEK-MEDIA
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?page/([a-zA-Z0-9]+)$ /index.php?page=$1
</IfModule>
# END RIEK-MEDIA
Hier are example from page nginx not working
https://riekmedia.dev/index.php?page=impressum
https://riekmedia.dev/page/impressum
Apache Server rewrite Rule is working
https://myteamspeak.online/index.php?page=impressum
https://myteamspeak.online/page/impressum