我想使用我的 .htaccess 文件添加“www”。到所有 URL,如果没有它的请求,但我希望我可以做到这一点而不必定义域,因为我想在许多站点上使用此代码而无需编辑它。这可能吗?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^sitemap\.xml/?$ sitemap.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?filename=$1 [L,QSA]
</IfModule>