How do I prevent PHP files from downloading automatically (hoster all-inkl.com)?

I have the problem described above. My website consists of HTML code, in which I include headers and footers using PHP. I still write the code myself and don't use WordPress. I parse these HTML files into PHP using an entry in the .htaccess file. Example .htaccess entry: AddType application/x-httpd-php .htm .html .php AddHandler server-parsed…

Grocy Installation – Rewrite Error?

Hey, maybe someone here can help me. I installed Grocy (unzipped ZIP). In principle, it should already be running by now. The installation is in the root directory of the subdomain. Actually, as I understand it, it should be accessible under public or with rewrite directly under the subdomain. But neither of these is the…

http to https redirect error on WordPress site?

I have a WordPress website, let's call it example.com, hosted by IONOS. It's an HTTPS website with a working SSL certificate, so all HTTP requests should be redirected to the requested page, but with HTTP replaced with HTTPS. For example, http://example.com should redirect to https://example.com (it works). http://example.com/subpage should redirect to https://example.com/subpage (it doesn't work!)….

.htaccess is only recognized if it doesn't refer to a specific file. Why?

Hello, I am currently trying to protect my Apache server with a login using the .htaccess file, but this only works if I <Files level1.html> # htaccess </Files> Yes, the file exists, and yes, the path is correct. I believe all the permissions are correct (-rwxr-xr-x). Now, I don't understand why this is so. Does…

Joomla suddenly duplicate htaccess can no longer be deleted?

I wanted to set up a rewrite rule on my Joomla website. However, while I was doing this, I noticed that there was suddenly a second .htaccess file in the directory. However, I can no longer delete or rename it. I keep getting the error message "550 Delete operation failed." Can someone please help me…

PHP redirect not working properly?

<?php header("Location: http://www.domain.de "); ?> It works with an index.php but only if you call domain.com, for example. But when I look at old, still active google entries like domain.com/Prices When I click, 404 not found appears and nothing is forwarded. I don't know all the domain.com subpages that are still on Google in order…

Remove Apache .htaccess file extension?

Options +MultiViews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L] I would like site.php to be overwritten with site, that works so far, but now I have the problem that if I have a file 'site.php' and a folder 'site/', it automatically goes to 'site/' instead of 'site'.