A growing niche of Western users actively seek "distraction-free" social media. The infinite scroll, algorithmic recommendations, and bright video loops are designed to hook attention. home.php has no such hooks. You read your friends' text posts, log out, and leave. It is a therapeutic tool against doomscrolling.
Modern Facebook loads a blank shell, then uses JavaScript (React.js) to fetch posts, images, and comments. This is slow on low-end hardware. In contrast, basic.facebook.com uses pure PHP server-side rendering. The server compiles the entire HTML page—text, links, and raw data—and sends a complete, static-looking document to your browser.
m.basicfacebook.com/home.php is Facebook's "basic" HTML mobile site. It is designed to function on virtually any device with a web browser, including:
The home.php part simply indicates the logged-in homepage feed.
| URL Component | Value | Description |
|---------------|-------|-------------|
| Subdomain | m.basic | Denotes the "basic" mobile tier (distinct from m or mbasic) |
| Domain | facebook.com | Primary Facebook domain |
| Path | /home.php | The specific PHP script rendering the user's news feed/homepage |
| Protocol | HTTPS | Encrypted connection (required for login) |
Note: Historically,
mbasic.facebook.comserved the same purpose.m.basicfacebook.comis an alias or redirect pattern observed in some regions or legacy DNS setups.
HTTP/2 200 OK
Content-Type: text/html; charset=utf-8
X-Frame-Options: DENY
Cache-Control: private, no-cache, no-store
Set-Cookie: datr=...; Domain=.facebook.com; Path=/; Secure; HttpOnly