Skip to content

Instantly share code, notes, and snippets.

@eksana
Created May 26, 2017 17:22
Show Gist options
  • Save eksana/38f56280e10ed3bac4c23fb51025e813 to your computer and use it in GitHub Desktop.
Save eksana/38f56280e10ed3bac4c23fb51025e813 to your computer and use it in GitHub Desktop.
Перенос сайта на хостинг
Было на локальном хостинге
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /WPAvto/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /WPAvto/index.php [L]
</IfModule>
# END WordPress
Переписали на реальном хостинге beget
# 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