URL Rewriting in Apache

From the Apache cheat sheet ยท htaccess & URL Rewriting ยท verified Jul 2026

URL Rewriting

Advanced URL rewriting with mod_rewrite

apache
# Basic rewrite
RewriteEngine On
RewriteRule ^old-page$ /new-page [R=301,L]

# Dynamic rewrite
RewriteRule ^user/([0-9]+)$ /profile.php?id=$1 [L]

# WordPress permalinks
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
๐Ÿ”„ mod_rewrite is powerful but complex
๐Ÿ“ Test rules carefully with RewriteLog
๐ŸŽฏ Order matters - most specific first
โšก Use RewriteCond for conditional rules

More Apache tasks

Back to the full Apache cheat sheet