-1

元の URL をリダイレクトして URL を書き換える方法

オリジナル: domain/index.php?p=50 書き換え: domain/post/50/

私はここでよりよく説明しようとします

もしも

リクエスト: domain/index.php?p=50

リダイレクト先: domain/post/50/

:domain/index.php?p=50 に書き換え

ありがとうございました

4

1 に答える 1

1

このコードで:

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^post/([0-9]+)$ index.php?p=$1 [L]

あなたは別の方法で考えなければなりません:

  • ユーザーは domain/post/50 を使用します
  • この URL を domain/index.php?p=50 に書き換えます。
于 2012-06-02T01:29:10.803 に答える