且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

有什么方法可以替换“& amp;"吗?带有“&"在Magento URL中

更新时间:2023-02-19 13:59:14

您应该找出出现此问题的原因,但是,如果您只想替换url,则应将其添加到您的.htaccess文件中:

You should find out why the issue appears, but if you just want to replace the url you should add this to your .htaccess file:

RewriteEngine On
RewriteRule ^(.*)&(.*)$ /$1&$2 [L,R=301]