Help with my .htaccess
-
Hi everyone,
I need your help… I try to move my blog from /blog to /, but I have many problems… So I changed it with .htaccess in wp-admin.
So… My .htaccess is now:
# BEGIN WPSuperCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
AddDefaultCharset UTF-8
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{QUERY_STRING} !.*attachment_id=.*
RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/blog/$1/index.html.gz [L]RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{QUERY_STRING} !.*attachment_id=.*
RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
</IfModule># END WPSuperCache
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
The problem is that all my index in Google are to /blog/… How can I do if some get into my site, for example to: https://www.colegioyapeyu.edu.ar/blog/2008/06/site change to: https://www.colegioyapeyu.edu.ar/2008/06.
Without the .htaccess that adds WordPress, when I moved the files this works:
Redirect 301 /blog/ https://www.colegioyapeyu.edu.ar/
Redirect 301 /blog https://www.colegioyapeyu.edu.ar/But now not, How can I do that?
Thanks in advance.
- The topic ‘Help with my .htaccess’ is closed to new replies.