Moderator
t-p
(@t-p)
Is this something to do with permalinks?
To find out, try resetting your custom permalinks back to the default setting and renaming your WordPress .htaccess file. If that works, then try reading Using_Permalinks before setting a custom permalink structure again.
Hi Tara,
Thanks so much for the reply.
Dense question – how do I rename my htaccess file and what should I rename it as?
Moderator
t-p
(@t-p)
for example, rename such as: htaccessHOLD
You can use FTP , or your web-host’s cPanel or whatever file management application your host provides
Hi,
I’ve managed to find my .htaccess file within Yoast SEO. It says the following (copy and pasted) but I’m not sure what I need to change?
Also, Google finds my posts but says “A description for this result is not available because of this site’s robots.txt”. Is this related to the htaccess problem too?
# Added by http://bloggertowp.org/ #
#############################################################
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Redirect Main Blog feeds
#ATOM Feeds
RewriteRule atom.xml feed/atom/ [L,R=301]
RewriteRule feeds/posts/default feed/atom/ [L,R=301]
#RSS FEEDS
RewriteRule feeds/posts/default?alt=rss feed/ [L,R=301]
RewriteRule rss.xml feed/ [L,R=301]
#Comments Feed
RewriteRule /feeds/comments/default comments/feed/ [L,R=301]
RewriteRule /feeds/comments/default?alt=rss comments/feed/ [L,R=301]
#Redirect archives
RewriteRule ^([0-9]{4})_([0-9]{1,2})_([0-9]{1,2})_archive\.html$ $1/$2/ [L,R=301]
#Redirect labels/tags/categories
RewriteRule ^search/label/(.*)$ category/$1/ [L,R=301]
</IfModule>
# End http://bloggertowp.org
# 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
RewriteEngine on
Thanks in advance,
Sian