使用URL Rewrite,我希望如此:www.xxx.com/view-item/abc:www.xxx.com/item/abc.pdf。如何在.htaccess中使用重写规则?一直在寻找http://httpd.apache.org/docs/current/rewrite/flags.html#flag_t和其他网站,但无法理解。
答案 0 :(得分:1)
如果您希望重写为内部且没有HTTP 301或302,请尝试此操作:
RewriteEngine on
RewriteRule ^/view-item/(.+) /item/$1.pdf [L]
如果HTTP 301或302重定向正常,则Mod_rewrite在这里有点过分。您也可以使用RedirectMatch:
RedirectMatch ^/view-item/(.+) /item/$1.pdf