How can article numbers be included in URLs for individual products on a website like Amazon or emunio?

To include article numbers in URLs for individual products on a website like Amazon or emunio, you can use URL rewriting techniques. This involves creating a unique URL structure that includes the article number as a parameter. This allows for better SEO optimization and easier navigation for users.

// Example of URL rewriting in PHP
if(isset($_GET['article_number'])) {
    $article_number = $_GET['article_number'];
    // Fetch product details based on the article number
    // Display product details on the page
} else {
    // Display a list of products or a default page if no article number is provided
}