Could we help you? Please click the banners. We are young and desperately need the money
In today's web ecosystem, browser prefetching has become an increasingly important factor in website performance. Modern browsers like Chrome, Firefox, and Edge use prefetching technologies to predict which pages users might visit next and preload those resources in advance. While this can significantly improve user experience by reducing perceived page load times, it can also create challenges for web servers, particularly those running multiple websites on a single Apache instance.
Have you noticed mysterious requests to /.well-known/traffic-advice
in your Apache logs, often resulting in 404 errors? These aren't random bot attacks but rather browsers attempting to determine your prefetching preferences. In this comprehensive guide, we'll explore how to properly configure Apache to handle these requests across all your virtual hosts, optimizing both server performance and user experience.
Browser prefetching is a technique used by modern web browsers to speed up page loading by predicting which resources a user might request next and downloading them in advance. While this can dramatically improve user experience, unconfigured prefetching can lead to:
The .well-known/traffic-advice
endpoint is a standardized way for websites to communicate prefetching preferences to browsers. By properly configuring this endpoint, you can control how browsers interact with your site, leading to better performance and reduced server load.
The traffic-advice.json
file is a JSON-formatted configuration file that tells browsers how they should handle prefetching for your website. It follows a specific format that allows you to define prefetching rules for different browsers and prefetching mechanisms.
Here's what a comprehensive traffic-advice.json
file looks like:
[
{
"user_agent": "prefetch-proxy",
"google_prefetch_proxy_eap": {
"fraction": 0.9
}
},
{
"user_agent": "Chrome Privacy Preserving Prefetch Proxy",
"google_prefetch_proxy_eap": {
"fraction": 0.9
}
},
{
"user_agent": "FetchMetadata",
"accept": {
"sec-purpose": {
"prefetch": true,
"prerender": true
}
}
},
{
"user_agent": "Edge",
"accept": {
"sec-purpose": {
"prefetch": true,
"prerender": true
}
}
},
{
"user_agent": "Firefox",
"accept": {
"purpose": {
"prefetch": true,
"prerender": true
}
}
},
{
"user_agent": "*",
"accept": {
"purpose": {
"prefetch": true,
"prerender": true
},
"sec-purpose": {
"prefetch": true,
"prerender": true
}
}
}
]
Let's break down what's happening in this configuration:
By setting the "fraction" value to 0.9 in our example, we're telling Chrome's Privacy Preserving Prefetch Proxy to prefetch 90% of potential navigation destinations. This strikes a good balance between performance benefits and server resource management.
Now let's walk through the complete process of implementing this solution on your Apache server:
First, we need to create our JSON configuration file. We'll place it in a central location accessible by Apache.
sudo nano /etc/apache2/traffic-advice.json
Paste the JSON configuration from earlier into this file and save it.
Next, we'll create a dedicated Apache configuration file to handle requests to the /.well-known/traffic-advice
endpoint across all virtual hosts:
sudo nano /etc/apache2/conf-available/traffic-advice.conf
Add the following configuration:
# Global configuration for traffic-advice across all vHosts
Alias "/.well-known/traffic-advice" "/etc/apache2/traffic-advice.json"
<Files "traffic-advice.json">
# Set the appropriate headers
Header always set Content-Type "application/trafficadvice+json"
Header always set Permissions-Policy "browsing-topics=(), prefetch=()"
</Files>
This configuration does several important things:
/.well-known/traffic-advice
to our central JSON fileNow, let's enable our new configuration:
sudo a2enconf traffic-advice
sudo systemctl reload apache2
The a2enconf command creates a symbolic link from our configuration file in /etc/apache2/conf-available/ to /etc/apache2/conf-enabled/, activating it for all virtual hosts on the server.
You can verify that your configuration is working correctly by making a request to the https://your-web.site/.well-known/traffic-advice
endpoint:
curl -I https://your-web.site/.well-known/traffic-advice
You should see a response with a 200 status code and the proper content type header:
HTTP/2 200
content-type: application/trafficadvice+json
permissions-policy: browsing-topics=(), prefetch=()
cache-control: max-age=86400, public
Now check the content with:
curl https://your-website.com/.well-known/traffic-advice
This should return your JSON configuration.
There are several ways to handle browser prefetching. Let's compare our centralized approach with other common methods:
Feature | Centralized traffic-advice.json | Individual vHost Files | Meta Tags Approach | No Configuration |
---|---|---|---|---|
Server-wide Implementation | Yes | No | No | N/A |
Maintenance Complexity | Low | High | Medium | None |
404 Error Reduction | Complete | Complete (if configured) | Partial | None |
Works with Multiple CMS | Yes | Yes | No (requires theme edits) | Yes |
Fine-grained Control | Limited (global) | High (per site) | Medium (per page) | None |
Server Load Impact | Minimal | Minimal | Moderate | High |
As you can see, the centralized approach offers the best balance of ease of implementation, maintenance, and effectiveness for most multi-site Apache deployments.
The centralized traffic-advice.json approach offers several significant benefits:
This solution is particularly valuable for:
The default configuration we've provided offers a good balance between performance and server resource management, but you may want to adjust it based on your specific needs:
The "fraction" value in the JSON file controls what percentage of potential prefetch requests are allowed:
To adjust this, simply modify the "fraction" values in your /etc/apache2/traffic-advice.json
file and restart Apache.
You can also create different rules for different browsers. For example, if you want to disable prefetching for Chrome but allow it for Firefox, you could adjust your configuration accordingly:
[
{
"user_agent": "prefetch-proxy",
"google_prefetch_proxy_eap": {
"fraction": 0.0
}
},
{
"user_agent": "Firefox",
"accept": {
"purpose": {
"prefetch": true,
"prerender": true
}
}
}
]
If you're having issues with your traffic-advice configuration, here are some common problems and their solutions:
Symptom: When checking with curl, you don't see the correct headers.
Solution: Make sure mod_headers is enabled:
sudo a2enmod headers sudo systemctl restart apache2
Symptom: You get a 404 response when requesting
/.well-known/traffic-advice
Solution: Check file permissions and paths:
sudo chown www-data:www-data /etc/apache2/traffic-advice.json sudo chmod 644 /etc/apache2/traffic-advice.json
Symptom: The file is being served, but browsers aren't respecting your preferences.
Solution: Validate your JSON format:
cat /etc/apache2/traffic-advice.json | jq
If you don't have jq installed, you can install it with:
sudo apt install jq
Symptom: Your configuration works on some sites but not on WordPress or other CMS.
Solution: Ensure your Alias directive is processed before WordPress's .htaccess rules by adding this to your vhost configuration:
RewriteEngine Off
After implementing your traffic-advice configuration, it's important to monitor its impact:
Look for a reduction in 404 errors for /.well-known/traffic-advice
:
grep "/.well-known/traffic-advice" /var/log/apache2/error.log | wc -l
Compare this count before and after implementation.
Watch for changes in server load and traffic patterns:
htop
Use tools like Google PageSpeed Insights or WebPageTest to measure improvements in loading times. Look particularly at metrics like Time to First Byte (TTFB) and First Contentful Paint (FCP), which can be positively affected by proper prefetching configuration.
Implementing a centralized traffic-advice.json
configuration is a relatively simple change that can have significant positive effects on both server performance and user experience. By properly managing browser prefetching behavior, you:
With just a few minutes of configuration work, you can immediately start seeing benefits across all websites hosted on your Apache server. This solution is an excellent example of a small, targeted optimization that delivers outsized returns on investment.
Have you implemented this solution on your servers? What performance improvements have you noticed? Share your experiences in the comments below!