私は検索していますが、うまくいきません。.htaccess - index.phpを削除し、複数のパラメータでリダイレクト
私は、次の.htacess
RewriteEngine on
# Rewrite request URL
# Input: index/VIDEO/
# Output: index.php?id=VIDEO
RewriteRule ^(\w+)/?$ index.php?id=$1
それは、次のURLを変更し、正常に動作してい:
https://subdomain.domain.com/path/to/index.php?id=234556
https://subdomain.domain.com/path/to/234556
しかし、私は二番目のパラメータを追加しました(
にライセンスを)ので、次のURLを書き換える必要があります:https://subdomain.domain.com/path/to/index.php?id=234556&license=23432532
https://subdomain.domain.com/path/to/234556/23432532
それとも
https://subdomain.domain.com/path/to/234556&license=23432532
に私はここで検索する複数の方法をしようとしてきたが、私は、この仕事を傾けます。
ありがとうございました。 Imは "Xamppにオブジェクトの場所がありません"を取得します。 $ /index.php?id=$1&license=$2 [L、QSA] テストするURL: http:// localhost/api/source/videos/28652187/23432324 – Kokox
'/'を 'index.php'の前に削除します。これは、あなたの 'localhost'をテストすることはできません。' RewriteRule ^([^ /。] +)/(。*?)$ index.php?id = $ 1&license = $ 2 [L、QSA] ' – Thamilan
URL :) – Thamilan