フォルダ「/mixtapes/」に.htaccess ファイルがあります。mydomain.com/music/downloads/mixtapes/this-title/id
実行するURL を取得しようとしています。mydomain.com/music/downloads/mixtapes/item.php?title=variable1&id=variable2
現在、以下の方法である程度機能していますが、IDのみを使用しており、「/」で区切られた両方の変数(../mixtapes/title/id)が必要であり、何らかの理由で以下のコードで「/ mixtapes /」内のインデックスページ"うまくいきません。困惑しています! 私はこれにやや慣れていないので、どんな助けも大歓迎です!
ところで、私のインデックスページでは、ページに渡すURLitem.php
が書き換えられていますが、フォーマットで<a href="title/id">
適切に実行できないようですitem.php?title=a&id=b
mixtapes/title/id
「/mixtapes/」にある現在の htaccess ファイル
# turn mod_rewrite engine on
RewriteEngine On
# rewrite all physical existing file or folder
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} !-d
# allow things that are certainly necessary
RewriteCond %{REQUEST_URI} "/css/" [OR]
RewriteCond %{REQUEST_URI} "/images/" [OR]
RewriteCond %{REQUEST_URI} "/images/" [OR]
RewriteCond %{REQUEST_URI} "/javascript/"
# rewrite rules
RewriteRule ^mixtapes/item.php(.*) - [L]
RewriteRule ^(.*) item.php?id=$1 [QSA]