次の modrewrite スクリプトを取得しました。
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)/(.*)$ product.php?categorie_url=$1&product_url=$2
THIS ONE ABOVE IS WORKING: -> domain.com/korsetten/school-girl
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)$ categorie.php?categorie_url=$1
THIS ONE ABOVE IS NOT WORKING: -> domain.com/korsetten
.htaccess ファイル全体:
RewriteEngine on
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)/(.*)$ product.php?categorie_url=$1&product_url=$2
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)$ categorie.php?categorie_url=$1
誰かがカテゴリページで私が間違っていることを説明できますか?