"custom_title" パラメータがある検索クエリの URL を書き換え (.htaccess) たい。誰でも私を助けることができますか?この URL を書き換えたい:
http://www.mysite.com/search.php?search_query=myquery&custom_title=mytitle
これに:
http://www.mysite.com/results/myquery/mytitle/
"custom_title" パラメータがある検索クエリの URL を書き換え (.htaccess) たい。誰でも私を助けることができますか?この URL を書き換えたい:
http://www.mysite.com/search.php?search_query=myquery&custom_title=mytitle
これに:
http://www.mysite.com/results/myquery/mytitle/
mod_rewrite と .htaccess を有効にしてからhttpd.conf
、このコードをディレクトリの.htaccess
下に配置します。DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^results/([^/]+)/([^/]+)/?$ /search.php?search_query=$1&custom_title=$2 [L,NC,QSA]