我有一个WordPress安装。我在这条路上有一张图片:
http://www.somedomain.com/wp-content/themes/twentytwelve/image.php
是否可以将其链接/重写到此路径?
http://www.somedomain.com/wp-content/themes/twentytwelve/image.png
Htaccess可以没问题。也许匹配/image.php
?
答案 0 :(得分:1)
在.htaccess文件中尝试:
RewriteEngine On
RewriteRule ^(.*)\.php$ $1.png
答案 1 :(得分:0)
您可以尝试这样的事情:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteRule ^(script)/([^.]*)\.php$ $1/image.png [L]
希望它能帮助您实现目标。原谅我任何语法错误。