digiweb

msg:4268739 | 11:30 pm on Feb 17, 2011 (gmt 0) |
those urls didn't print -- need site / category / general / page to be site / category / page thank you!
|
topr8

msg:4268748 | 11:39 pm on Feb 17, 2011 (gmt 0) |
the reason those url's don't print is that you should use example.com - that's what it is for. ... what have you tried so far?
|
digiweb

msg:4274538 | 12:53 pm on Mar 1, 2011 (gmt 0) |
thank you so much, my apologies for the delay. I've tried 1 RewriteRule ^/?general([a-z/.]*)$ /$1 [R=301,L] 2 RewriteCond $1 !^general/ RewriteCond ^/(.*)$ /general/$1 [L] 3 RewriteRule ^general/(.*)$ /$1 [L] I'm pretty much a newb at htaccess. 2 is a server error 1 and 3 just don't work
|
g1smd

msg:4274556 | 1:53 pm on Mar 1, 2011 (gmt 0) |
The redirects must be listed before the Joomla internal rewrite code. The redirects must use RewriteRule syntax with the [R=301,L] flags.
RewriteRule ^(([^/]+/)*)general/([^.]+)\.html http://www.example.com/$1/$3.html [R=301,L] Immediately after this code, place your canonical non-www to www redirects, again using RewriteRule syntax. See also: [webmasterworld.com...]
|
digiweb

msg:4275736 | 4:14 am on Mar 3, 2011 (gmt 0) |
Fantastic! Thank you so much!
|
|