# .htaccess for /mnt/www/zele.st/NovelAI/ # Redirects all requests to the moved page, except for assets RewriteEngine On # Allow specific file types to be served normally (CSS, JS, images, fonts) RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_URI} \.(css|js|png|jpg|jpeg|gif|svg|woff|woff2|ttf|ico)$ [NC] RewriteRule ^.*$ - [L] # Allow moved.html to be served normally RewriteCond %{REQUEST_FILENAME} moved.html$ RewriteRule ^.*$ - [L] # Catch everything else and serve the moved page RewriteRule ^.*$ moved.html [L] # Prevent caching of the moved page Header always set Cache-Control "no-cache, no-store, must-revalidate" Header always set Pragma "no-cache" Header always set Expires "0"