.htaccess generator
Check the rules you need, fill in any domains, and copy the result into your site's .htaccess file. Requires mod_rewrite to be enabled, which is standard on virtually all Apache hosting.
What is .htaccess generator?
.htaccess is Apache's per-directory configuration file — the usual way shared-hosting sites set up redirects, force HTTPS, and control access without touching the main server config.
How to use it
Check the rules you need (HTTPS redirect, www preference, custom redirects, directory listing, custom error pages) and fill in any domains — the finished .htaccess text is generated live.
Example
Checking "Force HTTPS" generates:
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]