Thanks Blair, This helps a lot, but still when you are logged in, instead of showing webtop control panel at the bottom of page, it shows replica of home page. Do i need to add something else to rewrite rules?
Thanks for help!!! Mika On Nov 11, 2:12 am, Blair McKenzie <[email protected]> wrote: > It's possible the encoded version of the url works because it converts other > characters into an ascii character set, which the default rewrite rule > matches. But Apache should be able to handle the simpler (and less > restrictive) pattern. > > Try changing the rewrite rules to replace: > [a-zA-Z0-9\/\-\%:\[\]\{\}\|\;\<\>\?\,\*...@\#\$\(\)\^_`~]* > with > [^.]* > > Blair > > On Thu, Nov 11, 2010 at 1:40 AM, smika <[email protected]> wrote: > > Hi Blair, > > at the moment we're having generated FUs for each article: > > /english/article/2010-08-12-serj tankian: genocide of armenians is > > what i feel and express through music > > /armenian/article/2010-08-12-սերժ թանգյան. հայոց ցեղասպանությունն այն > > է, ինչ ես զգում և արտահայտում եմ երաժշտության միջոցով > > /russian/article/2010-08-12-серж танкян: геноцид армян - это то, что я > > чувствую и выражаю через музыку > > So we have 3 FUs per article. > > > Rewrite rules looks like this: > > RewriteCond %{HTTP_URL} (^/farcry|^/webtop|^/flex2gateway|^/ > > flashservices|^/cfide|\.cfm|\.swf|\.xml)($|/) > > RewriteRule ^(.*)$ $1 [L] > > RewriteCond %{HTTP_URL} (.*)(\?)(.*) > > RewriteRule ^(.*)$ /index.cfm?furl=$1&%1 [L,PT,QSA] > > RewriteRule ^([a-zA-Z0-9\/\-\%:\[\]\{\}\|\;\<\>\?\,\*...@\#\$\(\) > > \^_`~]*)$ /index.cfm?furl=$1 > > #RewriteRule ^([a-zA-Z0-9\/\-\%:\[\]\{\}\|\;\<\>\?\,\*...@\#\$\(\) > > \^_`~] *)$ /index.cfm?furl=$1[L,PT,QSA] > > > Actually i dont know what to do, or which cflocation tags to change. > > Our extended packages/types/FarFU.cfc uses cfheader, there is > > cflocation tags. > > > Thanks, > > Mika > > > On 10 նոյ, 00:53, Blair McKenzie <[email protected]> wrote: > > > I believe cfheader is used for redirects in farFU.cfc, but there are > > > probably other places where it can still be substituted for cflocation. > > We > > > avoided it in the past to make CF7 compatibility easier, but in FC6 we > > > dropped support for 7. Where are the redirects causing problems for you? > > > > Blair > > > > On Wed, Nov 10, 2010 at 7:17 AM, smika <[email protected]> wrote: > > > > we've got a problem with friendly urls in a multi-language website > > > > arminfo.am. > > > > Thing is that we have articles with 3 language Body, Title and teaser, > > > > and we've creating 3 friendly urls for each language. Now FarCry > > > > creates everything fine, but when it comes to parsing it seems that it > > > > doesnt parse unicode characters properly. From hosting support person > > > > i've got a message like this: > > > > This seems to be an issue with the cflocation tag not using the UTF-8 > > > > character encoding for the response headers. I found that it does > > > > work if the foreign characters are URL encoded with the > > > > "URLEncodedFormat()" function. It also works if the redirect is done > > > > with the cfheader tag instead of the cflocation tag since the cfheader > > > > tag allows you to specify the charset as UTF-8. > > > > > Can this be an issue? > > > > > We're using FarCry 6.0 on IIS 7.5. > > > > > Thanks, > > > > Mika > > > > > -- > > > > You received this message cos you are subscribed to "farcry-dev" Google > > > > group. > > > > To post, email: [email protected] > > > > To unsubscribe, email: > > > > [email protected]<farcry-dev%[email protected]> > > <farcry-dev%[email protected]<farcry-dev%[email protected]> > > > > > For more options:http://groups.google.com/group/farcry-dev > > > > -------------------------------- > > > > Follow us on Twitter:http://twitter.com/farcry > > > -- > > You received this message cos you are subscribed to "farcry-dev" Google > > group. > > To post, email: [email protected] > > To unsubscribe, email: > > [email protected]<farcry-dev%[email protected]> > > For more options:http://groups.google.com/group/farcry-dev > > -------------------------------- > > Follow us on Twitter:http://twitter.com/farcry -- You received this message cos you are subscribed to "farcry-dev" Google group. To post, email: [email protected] To unsubscribe, email: [email protected] For more options: http://groups.google.com/group/farcry-dev -------------------------------- Follow us on Twitter: http://twitter.com/farcry
