Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond $0 !=index.php RewriteRule .* index.php?path=$0 [QSA,B]
Не совсем, это соответствующий код для переписывания:
RewriteEngine On RewriteBase / RewriteCond ${REQUEST_URI} !^/index.php$ RewriteRule ^(.*)$ index.php?path=$1 [QSA,B,L]