From: Mikael Nordfeldth Date: Wed, 6 Aug 2014 08:30:35 +0000 (+0200) Subject: PATHINFO example added to htaccess.sample X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6e181a2454e888b09313344138f66713d5c9c99f;p=quix0rs-gnu-social.git PATHINFO example added to htaccess.sample --- 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]