Subdirectories URL Internally Redirect to Query String

The URL in the browser would be: https://css-tricks.com/index.php/teachers/a/ The actual page rendered by the server would be: https://css-tricks.com/index.php?search=teachers&sort=a RewriteEngine on RewriteRule ^index/([^/]+)/([^/]+).php /page.php?search=$1&sort=$2 [NC]

Avatar of Chris Coyier
Chris Coyier on
Keep browsing in the archives