私はURLを持っています
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 ファイルをサブフォルダー、つまりクーポンで使用しています
誰がどこが間違っているかを確認できますか?