diff --git a/htaccess.sample b/htaccess.sample index fb191cc7e8..c0b61ee295 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -19,6 +19,9 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php?p=$1 [L,QSA] + + ## You can also use PATHINFO by using this RewriteRule instead: + # RewriteRule (.*) index.php/$1 [L,QSA]