动态内容和重写URL

时间:2017-02-10 作者:Haviv

我想创建一个名为Home的页面。在本页中,我将写下标题:

Find wedding services in [STATE]

以及内容。现在,如果URL为example.com/new-york, 标题为:

Find wedding services in New York

或者如果url是example.com/new-jersy, 标题最终将保持不变“新Jersy”。我会把我们所有的城市都写在网站地图上,这样有助于索引。

1 个回复
SO网友:Marc-Antoine Parent

我建议使用Insert PHP插件:https://fr.wordpress.org/plugins/insert-php/

您必须将URL路径绑定为$_GET 中的参数。htaccess使用RewriteCond/RewriteRule(如果您想保持URL结构)或使用类似的结构domain.com?city=New York.

在WordPress帖子中,您可以包括以下内容:

[insert_php]
echo \'Find wedding services in \' . $_GET[\'city\'];
[/insert_php]
至于SEO方面,确保每个页面上的内容不相同,因为搜索引擎会对重复的内容进行惩罚。

相关推荐