Hello!
How do i redirect a request going to to with mod_rewrite ?
Thank you.
How do i redirect a request going to to with mod_rewrite ?
Thank you.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
RewriteCond %{REQUEST_URI} ^/people/
RewriteRule ^/people/(.*) /people.php?username=$1&%{QUERY_STRING}
RewriteCond %{REQUEST_URI} ^/people/
RewriteRule ^/people/(.*) /people.php?username=$1&%{QUERY_STRING} [R]