Hola, acabo de instalar AIOSEO y quiero habilitar robots.txt pero la herramienta me dice
It looks like you are missing the proper rewrite rules for the robots.txt file. It appears that your server is running on Apache, so the fix should be as simple as checking the correct .htaccess implementation on wordpress.org.
esto es .htaccess
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.# END WordPress
# START: All in One SEO Sitemap Rewrite Rules
# Do not make edits to these rules!
# BEGIN WordPress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule sitemap(|[0-9]+)\.xml$ /index.php [L]
RewriteRule (default|video)-sitemap\.xsl /index.php [L]
# END: All in One SEO Sitemap Rewrite Rules
la consola me dice que la reescritura está habilitada
sudo a2enmod rewrite
Module rewrite already enabled
¿Alguien sabe dónde podría estar el problema?