Learn how to generate, download, and publish your llms.txt file to optimize your website for Large Language Models.
Begin by accessing the main form in the application. Enter your website URL and click the "Analyze Now" button.
The system will automatically fetch publicly available data from your site and analyze it to create your optimized llms.txt file.
After the analysis is complete, a ZIP file containing a customized llms.txt file will be available for download.
Download Steps:
llms.txt
Upload the llms.txt file to the root of your website's public folder. This is usually where files like robots.txt or sitemap.xml are placed.
File Location
public_html/llms.txt
After uploading, verify it is accessible by visiting:
https://yourdomain.com/llms.txt
If the file does not appear correctly, try these solutions:
Common Issues
Quick Tips
If you want to display .md files in the browser as readable text instead of downloading them, configure your web server accordingly.
Nginx Configuration
Add this to your server block:
location ~* \.md$ {
add_header Content-Type text/plain;
}
Then reload Nginx:
sudo nginx -t && sudo systemctl reload nginx
Apache Configuration
Add this to your .htaccess or virtual host:
<Files "*.md">
ForceType text/plain
</Files>
Then reload Apache:
sudo apache2ctl configtest && sudo systemctl reload apache2
Your website is now optimized for Large Language Models. AI systems like ChatGPT, Claude, and Perplexity will better understand and properly cite your content.