从子域重定向到没有URL更改的文件夹

时间:2014-01-21 19:14:41

标签: apache .htaccess subdomain

我想img.cetinblog.com就像cetinblog.com/feedimg/一样。我使用代码,但网址正在改变。我不想对网址进行任何更改。

htaccess代码

RewriteEngine On
Options Indexes FollowSymlinks Multiviews
RewriteBase /
RewriteCond %{HTTP_HOST} img.cetinblog.com
RewriteCond %{REQUEST_URI} ^/(.+)$
RewriteRule ^(.*)$ http://cetinblog.com/feedimg/$1 [L]

问题出在哪里?谢谢。

编辑: http://img.cetinblog.com/zombi.jpg应重定向http://cetinblog.com/feedimg/zombi.jpg,但我遇到了一些问题。

1 个答案:

答案 0 :(得分:0)

好的,试试这段代码:

RewriteEngine On
Options +Indexes +FollowSymlinks -Multiviews
RewriteBase /
RewriteCond %{HTTP_HOST} ^img\.cetinblog\.com$
RewriteRule ^((?!feedimg/).+)$ /feedimg/$1 [L]