Skip to content

Instantly share code, notes, and snippets.

@apisklov
Last active May 17, 2019 16:39
Show Gist options
  • Save apisklov/82438e3a683b8daeca019594435ee0b8 to your computer and use it in GitHub Desktop.
Save apisklov/82438e3a683b8daeca019594435ee0b8 to your computer and use it in GitHub Desktop.
.htaccess for WordPress (https, without www)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.context-promo\.ru$ [NC,OR]
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://context-promo.ru/$1 [R=301,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment