Burada anlatacağım döküman ile sitenizdeki arama özelliği ile IE için arama motoru hazırlayabilirsiniz
Within the documentation i’ll explain here, you can create your own search provider for ie
Türkçe Döküman:
Şimdi anlatacağım yöntem ile ie için kendinize arama motoru hazırlayabilirsiniz.
önce sitenizin nasıl arama yaptığını anlayın:
ben burada sitenizde bir arama yaptığınızda adres çubuğunda şöyle çıktığını varsaydım:
http://www.siteniz.com/arama.php?aranan=aranacakkelime
bu satırı değiştirirsiniz uygun yerde
öncelikle şu kodu sitenizin <head> </head> tagları arasına yerletirin:
-
<link rel="search" type="application/opensearchdescription+xml" href="http://www.siteniz.com/ara.xml" title="Web Site Aciklamaniz" />
sonra sitenizin ana klasörüne ara.xml olarak şu içeriği kaydedin
- <?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Web Site Basligi</ShortName>
<Description>Web Site Aciklamasi</Description>
<InputEncoding>ISO-8859-9</InputEncoding>
<Url type="text/html" template="http://www.siteniz.com/arama.php?aranan={searchTerms}"/>
</OpenSearchDescription>
artık internet explorer ayarlarından arama providerı olarak kendi sitenizi ekleyebilirsiniz
————————————————————
English Documentation:
Within the documentation i’ll explain here, you can create your own search provider for ie
First, understand how your website makes search:
i pretended that when i press "search", it shows as like:
http://www.website.com/search.php?keyword=wordstosearch
you can edit it
Firstly, add this code between <head> </head> tags:
-
<link rel="search" type="application/opensearchdescription+xml" href="http://www.website.com/search.xml" title="Web Site Description" />
then save this code as "search.xml" into root of your host
- <?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Web Site Title</ShortName>
<Description>Web Site Description</Description>
<InputEncoding>ISO-8859-1</InputEncoding>
<Url type="text/html" template="http://www.website.com/search.php?keyword={searchTerms}"/>
</OpenSearchDescription>
now you can add your site into ie search providers
kaynak (Source) : ceviz.net
0 Responses to “ie firefox ve opera için kendi arama motorunuzu oluşturmak - Generating own search provider for ie firefox and opera”
Leave a Reply