Plz help me config .htaccess file
Posted: Wed Feb 15, 2012 7:08 am
My Website used CMS Package
My .htaccess file:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [NE,R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
Result OK
"http://www.mydomain.com/search/?key_word=cp10
=> OK
I want to Replace:
?key_word=cp10
To:
"http://www.mydomain.com/search/[b]cp10[/b]/
cp10 is Request string
Thanks.
My .htaccess file:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [NE,R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
Result OK
"http://www.mydomain.com/search/?key_word=cp10
=> OK
I want to Replace:
?key_word=cp10
To:
"http://www.mydomain.com/search/[b]cp10[/b]/
cp10 is Request string
Thanks.