2013-05-21 167 views
0

我有以下類型的動態url。使用htaccess將動態url重定向到靜態url

http://example.com/interviews/sample1/data.xml 
http://example.com/interviews/sample1234/data.xml 
http://example.com/video/video-2/data.xml 

在這裏interviews,sample1,sample1234,視頻,視頻-2等是動態名稱。 我想將那些動態網址重定向到以下靜態網址

http://example.com/data.xml 

問候

回答

2

嘗試:

RedirectMatch ^/.+/data.xml$ /data.xml 

或使用mod_rewrite:

RewriteCond %{REQUEST_URI} !^/data.xml$ 
RewriteRule /data.xml$ /data.xml [L,R] 
+0

優秀。我把RedirectMatch^/。+/data.xml $ /data.xml 工作得很好。你節省了我的時間。非常感謝 ! –