Skip to content

Instantly share code, notes, and snippets.

@isheraz
Last active June 21, 2023 14:01
Show Gist options
  • Save isheraz/680598160315e5017c696102f053f71b to your computer and use it in GitHub Desktop.
Save isheraz/680598160315e5017c696102f053f71b to your computer and use it in GitHub Desktop.
To Change Main directory to a subdirectory on a live website
# .htaccess main domain to subdirectory redirect
# Do not change this line.
RewriteEngine on
# Change example.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subdirectory/
# Don't change the following two lines.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /subdirectory/$1
# Change example.com to be your main domain again.
# Change 'subdirectory' to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ subdirectory/index.html [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment