0

次のようなページをリダイレクトする必要があります。

http://example.com/clients/themes?domain=localhost.com

このリンクは、同じディレクトリにある skin.php にリダイレクトする必要があります。

誰でも私を助けることができますか?ありがとう。

4

1 に答える 1

2

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ます。

于 2012-05-24T12:07:55.867 に答える