<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ([a-zA-Z]{1,})-([0-9]{1,}).html$index.php?action=$1&id=$2 </IfModule>
程序代码:
<?php
echo '你的Action是:' . $_GET['action'];
echo "<br>";
echo '你的ID是:' . $_GET['id'];
?>
现在在浏览器中输入: localhost/page-18.html
但是报错:
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.