のようなものをどのように書き換えますか
dir/index.php?abc=123
のようなものに
ディレクトリ/ユーザー/123
?
私はindex\.php\?abc\=[1-9]+
これまでに持っていますが、数値を変数として に渡す方法がわかりませんuser/...
。
のようなものをどのように書き換えますか
dir/index.php?abc=123
のようなものに
ディレクトリ/ユーザー/123
?
私はindex\.php\?abc\=[1-9]+
これまでに持っていますが、数値を変数として に渡す方法がわかりませんuser/...
。
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]