Skip to content

Instantly share code, notes, and snippets.

@tranchausky
Created December 30, 2023 11:46
Show Gist options
  • Save tranchausky/cd48a3aee40c37ed903e5c9ff1ab42b6 to your computer and use it in GitHub Desktop.
Save tranchausky/cd48a3aee40c37ed903e5c9ff1ab42b6 to your computer and use it in GitHub Desktop.
Use a subdirectory as root with htaccess
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain-name.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain-name.com$
RewriteCond %{REQUEST_URI} !folder/
RewriteRule (.*) /folder/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment