/ Published in: Apache
Expand |
Embed | Plain Text
Options -Indexes Options +FollowSymLinks RewriteBase / RewriteEngine On ## /id/product-name/ to index.php?id=id RewriteRule ^([0-9]*)/(.*)$ index.php?id=$1 [L] ## non www to wwww ## RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www\.site\.com [NC] RewriteRule (.*) http://www.site.com/$1 [R=301,L] ## www to non www ## RewriteCond %{HTTP_HOST} !^site\.com$ RewriteRule (.*) http://site.com/$1 [R=301,L]
You need to login to post a comment.
