:8888是本地Apache服务器正在侦听的端口,实际上不是url的一部分。
要在本地使用自己的自定义域名,请打开主机文件sudo nano /etc/hosts
将这一行添加到底部
127.0.0.1 custom-domain.dev
然后将您的域添加到wp config。php:
define( \'WP_HOME\', \'http://custom-domain.dev\' );
define( \'WP_SITEURL\', \'http://custom-domain.dev\' );
然后,您需要将Apache vhost中的域名指向根目录的存储位置,并将端口更改为80。(您可以使用OSX内置的Apache/PHP来实现这一点。
WPCandy has a good detailed tutorial on how.您的Vhost应该如下所示:
NameVirtualHost *:80
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
DocumentRoot "/Users/your-name/Sites/blah"
ServerName custom-domain.dev
</VirtualHost>