Hello,
I'm trying to create a custom robots.txt. But when i upload it to the root of my blog, it doesn't overwrite the standard robots.txt that wordpress auto-creates (there is no robots.txt in the blog root), instead, it gives an error that robots.txt cannot be found...
I think it has something to do with the .htaccess file, because it also automatically adds an end-slash like: example.com/robots.txt/
Hope someone can help me :)
--- BEGIN .htaccess ---
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
--- END .htaccess ---
Greetings