如何修改 WordPress 网站的 URL?
我的网站设置有 5 个页面,它们是我的菜单选项。
使用 MAMP 在本地主机上运行 WordPress 网站时,我的 url 为:
http://localhost:8888/mySite/< /a> 或 http://www.example.com/ (当我上线时)
当我点击时在菜单项上,它将 URL 更改为:
http://localhost:8888/mySite/MenuOptionA或 http://www.example.com/mySite/MenuOptionA
如何设置永久链接或者其他什么,这样当我单击任何菜单选项时,它总是只显示上面的主 URL,而不显示 /MenuOptionA?
我基本上希望我的网址始终只显示 http://www.example.com/ 无论如何菜单选项被选中。
I have setup my site with 5 pages which are my menu options.
When running my WordPress site on my local host using MAMP, my url is:
http://localhost:8888/mySite/ or http://www.example.com/ (when I go live)
When I click on a menu item, it changes the URL to:
http://localhost:8888/mySite/MenuOptionA or http://www.example.com/mySite/MenuOptionA
How can I setup a Permalink or something else, so that it always just shows my main URL above without the /MenuOptionA when I have click on any menu options?
I basically would like my url to always just show http://www.example.com/ no matter what menu option is selected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将以下语句添加到 wp-config.php 来轻松更改站点的 url。
如果您不想维护两个不同的配置文件,您可以在其中放置一个条件来确定使用什么值。
You can change you're site's url easily by adding in the following statements into wp-config.php
If you don't want to maintain two different config files, you can put a conditional in there to determine what value to use.