| Server IP : 159.69.118.108 / Your IP : 216.73.216.200 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-4gb-fsn1-1 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 13:53:54 UTC 2025 aarch64 User : root ( 0) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/lauthiamkok.net/mockapi.lauthiamkok.net/ |
Upload File : |
# 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
# BEGIN Caching
# Note: If there is a Cache-Control header with the max-age or s-maxage
# directive in the response, the Expires header is ignored. In other words, if
# both Expires and max-age are set max-age will take precedence.
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expires
# https://devcenter.heroku.com/articles/increasing-application-performance-with-http-cache-headers
# Cache assets in seconds: 31536000 (365 days). Less than a month or beyond one
# year is not recommended.
<IfModule mod_headers.c>
# Disable caching:
# Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
# Header set Pragma "no-cache"
# Header set Expires 0
# Turn off the expires headers to prevent caching:
<IfModule mod_expires.c>
# ExpiresActive Off
</IfModule>
<filesMatch "\.(ico|pdf|jpg|jpeg|png|gif|svg|mp3|mp4|js|css|woff|woff2|txt)$">
# Cached on a public server, e.g. a CDN:
# Header set Cache-Control "max-age=31536000, public"
# Cached on the client’s computer only:
Header set Cache-Control "max-age=31536000, private"
</filesMatch>
<filesMatch "\.(x?html?|php)$">
Header set Cache-Control "private, must-revalidate"
</filesMatch>
</IfModule>
# END Caching