htaccess从带有子目录的文件夹重定向到单路径directoy

时间:2018-07-31 06:58:07

标签: .htaccess mod-rewrite

以前,我的网站使用的是wordpress,现在转换为html。

我有500多个pdf文件需要从

重定向

mysite.com/wp-content/themes/my-theme/pdfs文件夹到mysite.com/pdf/

2 个答案:

答案 0 :(得分:0)

您对网站具有服务器级别的访问权限吗?如果是这样,我会在您网站的公共根目录中create a symbolic linkwp-content/themes/my-theme/pdfs并将其命名为pdf

如果您只能做.htaccess文件,则可以创建如下文件:

Options +FollowSymLinks
RewriteEngine On 
RewriteRule ^pdf/(.*)$ /wp-content/themes/my-theme/pdfs /$1 [R=301,NC,L]

您可以检出a great tutorial有关重写规则。

答案 1 :(得分:0)

我试图这样对我有用。

RewriteRule ^ wp-content / themes / my-theme / pdfs /(.*)$ / pdf / $ 1 [R = 301,NC,L]