0

のようなものをどのように書き換えますか

dir/index.php?abc=123

のようなものに

ディレクトリ/ユーザー/123

?

私はindex\.php\?abc\=[1-9]+これまでに持っていますが、数値を変数として に渡す方法がわかりませんuser/...

4

1 に答える 1

0

mod_rewrite と .htaccess を有効にしてからhttpd.conf、このコードを DOCUMENT_ROOT の下の .htaccess に入れます。

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} ^abc=([^&]*) [NC]
RewriteRule ^dir/index\.php/?$ dir/user/%1 [L,R,QSA,NC]
于 2012-04-19T19:26:15.393 に答える