Forum Moderators: phranque
i have links like this
[domain.com...]
i want it like
[domain.com...]
or
[domain.com...]
i want it like
[domain.com...]
This is my htaccess
ErrorDocument 404 /
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ [domain.com...] [L,R=301]
RewriteRule ^([^-]+)-category$ index.php?cat=$1 [L]
thanks
i have links like this
http://www.example.com/?cat=1
i want it like
http://www.example.com/Category1/
or
http://www.example.com/?cat=2
i want it like
http://www.example.com/Category2/
This is my htaccess
ErrorDocument 404 /
#
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
RewriteRule ^([^-]+)-category$ index.php?cat=$1 [L]
Can u read now?
[edited by: jdMorgan at 10:20 pm (utc) on Jan. 30, 2010]
[edit reason] example.com [/edit]
Jim