这就是我的 apache httpd 文件的样子:
LoadModule rewrite_module modules/mod_rewrite.so
<Directory / >
Options FollowSymLinks
AllowOverride ALL
Order allow,deny
allow from all
</Directory>
现在我尝试执行这个简单的 mod 规则:
RewriteEngine on
RewriteRule ^product-([0-9]+)\.html$ index.php?id=$1
当我按下此链接时,应该会发生这种重写:
<a href="product-91.html">Press me</a>