我正在开发一个与Prestashop的网站,我添加了一个博客模块。
我的网站有两种语言(英语和法语),但我的博客帖子将只有法语。
如何删除我不想要的英文页面?
发布于 2019-03-28 03:27:53
有两种可能的解决方案:
在您的.htaccess文件中
Redirect 30 /blog/en/ http://www.myshop.com/not-available-in-english.html
您可以阅读有关301重定向here.的更多信息
-或者-
{if $lang_iso == 'en'} {l s='Sorry, this content is not available in English.'} {else} ... Existing code here {/if}
发布于 2019-04-01 15:30:59
或尝试在htaccess规则中使用:
Redirect 301 /blog/en/(.*) http://www.myshop.com/fr/$1
问候
https://stackoverflow.com/questions/55381518
复制相似问题