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