Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过创建一个脚本来自动化 WordPress 安装,该脚本将完成所有开发前无聊的事情。因此,如果我在域上安装 WordPress,例如,http://domain.tld我是否可以以某种方式制作一个脚本,将填写预定义的用户名和密码的表单提交给http://domain.tld/wp-install.php?
http://domain.tld
http://domain.tld/wp-install.php
我不知道 wp-install.php 长什么样,但你应该可以使用 curl。像这样的东西:
curl --data "username=myuser&password=mypassword" http://domain.tld/wp-install.php