古い URL http://abc.com/x.php?a=xyz&b=jklがあるとします。すべてのリクエストを x.php ページにリダイレクトする必要があります。 /バツ/
以下は、http: //xyz.comのルートにある .htaccess ファイルです。
# Turn on URL rewriting
RewriteEngine On
RewriteBase /
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $0 !=server-status
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT,L]