如何使用htaccess隐藏原始图像路径

时间:2019-08-06 13:00:27

标签: wordpress .htaccess

我正在尝试从WordPress网站隐藏原始图像路径。无论在什么地方都行不通。但其他规则仍然可以正常工作。

我尝试过

RewriteRule ^wp_unisol/img/([^/]+)$ wp_unisol/images/$1 [L]

但它不起作用。

当我检查.htaccess检查器时,它显示为true。

我需要像波纹管这样的图像路径

原始路径: https://clickthedemo.com/wp_unisol/images/noimgavailable.jpg

精确路径: https://clickthedemo.com/wp_unisol/img/noimgavailable.jpg

我知道这个问题以前曾问过,但没有帮助

2 个答案:

答案 0 :(得分:0)

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wp_unisol/

    RewriteRule ^img/([^/]+)$ images/$1 [L]
</IfModule>

将此内容放置在.htaccess目录的wp_unisol文件中。

答案 1 :(得分:0)

使用此:

RewriteEngine On
RewriteRule ^img/([^/]+)$ images/$1 [L]

并确保将其放在.htaccess文件的顶部,或者至少放在WordPress重写规则之前。