Rewrite GET Query String using .htaccess
问题 I want to Rewrite my GET Query String from this - http://www.example.com/verify.php?key=547b52f2b5d20d258e62de1e27b55c to this http://www.example.com/verify/547b52f2b5d20d258e62de1e27b55c I am using the following rule but it does not seem to work - RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(([A-Za-z0-9\-]+/)*[A-Za-z0-9\-]+)?$ $1.php RewriteRule ^[A-Za-z-]+/([A-Za-z0-9-]+)/?$ verify.php?key=$1 [NC,L] 回答1: Use the following: