私はこれに非常に慣れておらず、URL 書き換えに関する記事をいくつか読みました。
http://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/
http://coding.smashingmagazine.com/2011/11/02/introduction-to-url-rewriting/
私がしたいのは、www.domain.com/single-recipe.php?id=6 を変更することだけです
www.domain.com/recipes/6 へ
チュートリアルから、.htaccess に次のコードを作成しました。
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.domain.com [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
RewriteRule ^recipes/([0-9]+)/?$ single-recipe.php?id=$1 [NC,L] # Handle recipe requests
サイトの任意のページにアクセスしようとすると、素敵な内部サーバー エラー 500 が表示されます。
どんな助けでも大歓迎です。