HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-31-25-204 6.8.0-1018-aws #20-Ubuntu SMP Thu Oct 10 18:14:42 UTC 2024 x86_64
User: root (0)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/.htaccess
# Ensure mod_rewrite is not hiding the .php extension
RewriteEngine On
# (You don't need any rules that hide .php here)


# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress