我有一个网址
http://localhost/coupon/stores.php?store_slug=url
我想像这样改变它
http://localhost/coupon/url
我试过这段代码
RewriteEngine on
RewriteBase /coupon/
RewriteCond %{REQUEST_FILENAME} ! -f
RewriteCond %{REQUEST_FILENAME} ! -d
RewriteRule (.*) stores.php?store_slug=$1
但它不适用于上述 .htaccess 代码,出现 500 内部服务器错误。我在子文件夹中使用这个 .htaccess 文件,即优惠券
任何人都可以检查哪里做错了吗?