Hi,

I hope this is the right group I am posting to.
I'm trying using htaccess for SEO friendly. The htaccess sample is
below

<IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine on
    RewriteBase /
    RewriteRule .* - [env=REWRITE_ON:1]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [L]
</IfModule>

then i can type at the address bar like

http://mydomain/param1/value1  and my index.php will load

The problem is when it load the first time page is ok and then when I
type another link like http://mydomain/param2/value2 the jquery seems
not working anymore. I need to press F5 then it will ok.

I put META refresh in the HEAD and it works. BUT this is not what I
want. What I want is the page reload when people type in the address
bar + press enter NOT everytime the page keep refreshing for the same
URL.

Hope can help

Reply via email to