次のようなページをリダイレクトする必要があります。
http://example.com/clients/themes?domain=localhost.com
このリンクは、同じディレクトリにある skin.php にリダイレクトする必要があります。
誰でも私を助けることができますか?ありがとう。
mod_rewrite と .htaccess を有効にしてからhttpd.conf
、このコードをディレクトリの.htaccess
下に配置します。DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^domain=localhost\.com$ [NC]
RewriteRule ^clients/themes/?$ clients/skin.php? [L,NC]
これにより、リクエストが内部的に転送/clients/skin.php
され、クエリ文字列が削除されます。クエリ文字列も必要な場合は、?
afterを削除しskin.php
ます。