Apple Pay - Domain Verification
How to verify?
🟢 For WordPress Users
Method 1: Using cPanel File Manager
- Log in to your hosting cPanel
- Open "File Manager"
- Navigate to
public_html/(your WordPress root folder) - Click "New Folder"
- Use a folder name
.well-known(include the dot!) - Open the
.well-knownfolder - Click "Upload"
- Upload the Apple verification file
- Done!
Method 2: Using FTP (FileZilla)
- Connect to your website via FTP
- Navigate to the root directory (where you see
wp-config.php) - Create a new folder:
.well-known - Enter the
.well-knownfolder - Upload the Apple verification file
- Done!
Visual Guide:
🟢 For non CMS Websites
Ubuntu/Linux Server:
Bash
# Navigate to your web root
cd /var/www/html/
# Create .well-known directory
mkdir -p .well-known
# Upload your file (use SCP, SFTP, or manual upload)
# Place it at: /var/www/html/.well-known/apple-developer-merchantid-domain-association
# Set proper permissions
chmod 644 .well-known/apple-developer-merchantid-domain-associationWindows Server:
PowerShell
# Navigate to your web root (typically)
cd C:\inetpub\wwwroot\
# Create .well-known folder
mkdir .well-known
# Place the verification file inside this folderValidate the verification
Was this section helpful?
What made this section unhelpful for you?
On this page
- Apple Pay - Domain Verification