mod_rewrite:重定向子域和文件夹,但不重定向文件夹内容

时间:2012-12-15 23:13:20

标签: .htaccess mod-rewrite subdomain

我有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>

感谢Christopher Brixmootinator

0 个答案:

没有答案