我有assets.domain.com托管我在顶级域名上安装Wordpress的所有图片,字体,脚本等。我想将对子域和文件夹的任何访问重定向到顶级域而不影响文件夹内容(许多文件类型,所以我们希望避免将每个文件列为豁免,但如果这是我唯一的选择,那就这样吧)
与...关闭:
# Enable URL Rewriting
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(images|type|scripts)(/.*|$) - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/robots.txt
RewriteCond %{REQUEST_URI} !images/.* [NC]
RewriteCond %{REQUEST_URI} !type/.* [NC]
RewriteCond %{REQUEST_URI} !scripts/.* [NC]
RewriteRule ^(.*)$ http://www\.domain\.com [L,QSA]
</IfModule>