我试图通过使用url栏中的IPv4地址来设置本地主机以在android设备上工作,我正在使用XAMPP运行Apache和MySQL环境。
请注意,本地主机网站在PC环境下运行良好,这只是android的问题。
到目前为止,我已经编辑了httpd-vhosts.conf文件以包括以下内容:
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/testsite"
ServerName testsite.local
ServerAlias 192.168.1.55
ErrorLog "logs/testsite.local.log"
CustomLog "logs/testsite.localcustom.log" common
</VirtualHost>
wp-config文件中的详细信息是:
define('DB_NAME', 'testsitedb');
define('DB_USER', 'root');
define('DB_PASSWORD', '');
define('DB_HOST', 'localhost');
define('WP_SITEURL', 'http://testsite.local');
define('WP_HOME', 'http://testsite.local');