Mod rewrite sayfa çapa

0 Cevap php

Ben son iki saat boyunca bu çözmeye çalışıyorum. Zaten ancak herhangi bir şans olmadan, google belirtilen her çözümü denedim.

Let's start with the problem. I'm trying to use this plugin: http://www.gethifi.com/blog/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours

on my website. The problem is that this plugin is using Anchor tags. Without it, it doesn't seem to work. Well, I'm trying to work with User Friendly URL's on the website I'm working on right now. So the anchors are not working.

. Bu şu anda benim htaccess dosyası:

RewriteEngine On
RewriteBase /
RewriteRule ^([^/]*)\.html$ /mysite/category.php?cat=$1 [L]
RewriteRule ^([^/]*)/([^/]*)\.html$ /mysite/category.php?cat=$1&lang=$2 [L]

Hiçbir şey fantezi, kategoriler ve diller için sadece bazı yeniden yazar. Çalışmak gibi görünüyor tek şey şudur:

RewriteEngine On
RewriteBase /
RewriteRule ^([^/]*)\.html$ /mysite/category.php?cat=$1 [L]
RewriteRule ^([^/]*)/([^/]*)\.html$ /mysite/category.php?cat=$1&lang=$2 [NE,R,L]

Bunu kullanmak Ama benim Kullanıcı Dostu URL da gitti. Bunun yerine görüyorum:? Category.php cat = ....

Bu önemli olmadığını bilmiyorum ama ben üzerinde çalışıyorum konağa işaret <base href=""> kullanın.

Herhangi bir fikir için şimdiden teşekkür ederiz.

0 Cevap