[ kukipei @ 03.01.2010. 11:51 ] @
Pozdrav svima, Imam jedan cudan problem. Koristim ovaj .htaccess fajl: Code: Options +FollowSymLinks RewriteEngine On DirectoryIndex mvm.php ErrorDocument 404 /mvm.php RewriteRule ^chessdatabase/$ /mvm.php [L] RewriteRule ^searchposition/(.*)/$ /search-database-position.php?fen=$1 [L] RewriteRule ^([0-9]+)/searchposition/(.*)/$ /search-database-position.php?fen=$2&page=$1 [L] RewriteRule ^chessgame/(.*)/(.*)/([0-9]+)/$ /chessgame.php?gameid=$3 [L] RewriteRule ^onlinechessdatabase/$ /search-form.php [L] RewriteRule ^onlinechessdatabase/([0-9]+)/$ /search-form.php?page=$1 [L] # If requested resource does not exist as a file RewriteCond %{REQUEST_FILENAME} !-f # and does not end with a period followed by a filetype RewriteCond %{REQUEST_URI} !\..+$ # and does not end with a slash RewriteCond %{REQUEST_URI} !^(.*)/$ # then add a trailing slash and redirect RewriteRule ^(.*)$ http://www.gensunasumus.com/$1/ [L,R=301] Problem je da kada dodje do koriscenja .htaccess fajla php ne prenosi sesije. Primer: Ako dolazim na sledecu stranu http://www.gensunasumus.com/chessdatabase/ php ne prenosi sesije, a ako idem na stranu http://www.gensunasumus.com/mvm.php onda je sve u redu. Nadam se da ste me razumeli. Da li neko zna u cemu je problem. |