0

次のタイプの動的 URL があります。

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

このインタビューでは、sample1、sample1234、video、video-2... などは動的な名前です。これらの動的 URLを次の静的URLにリダイレクトしたい。

http://example.com/data.xml

よろしく

4

1 に答える 1

2

試す:

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

または mod_rewrite を使用:

RewriteCond %{REQUEST_URI} !^/data.xml$
RewriteRule /data.xml$ /data.xml [L,R]
于 2013-05-21T07:48:41.927 に答える