seo

How could configure or modify SWFAddress to make it use #! instead of #

点点圈 提交于 2019-12-08 04:07:22
问题 SWFAddress it's very cool way of providing deep linking in flash. But unless you use #! in urls (and a other things too), google wont index your internal pages. How would be the best way to configure (or modify) SWFAddress to use #!? 回答1: I actually found the answer in another question here in stackoverflow. I want to post the solution for future reference: Just open swfaddress.js with your editor and replace all instances of "#" (with quotes), with "#!". Is that simple :) 来源: https:/

Friendly Urls in DotNetNuke - Troubleshooting

旧时模样 提交于 2019-12-08 04:00:07
问题 In DNN, I'm using Host Settings -> Friendly Url Settings to try and make a page url SEO-friendly. But I keep getting an error and I don't know why. Current URL format: http://localhost/dnn/Admin/MyPage.aspx?title=news-article-name-written-here Desired URL format: http://localhost/dnn/Admin/MyPage/news-article-name-written-here "Friendly Url Settings" rule: MATCH: .*/MyPage/(.*) REPLACE WITH: ~/Admin/MyPage.aspx?title=$1 Error: Server Error in Application "DEFAULT WEB SITE/DNN" Internet

http https dupliacte content google

∥☆過路亽.° 提交于 2019-12-08 03:49:34
问题 I recently installed an SSL cert on one of my sites. I have noticed that Google has now indexed both the http and https version of each page. I haven't really noticed any problem ranking wise so far, but I am conscious that a problem may occur with duplicate content. How can I overcome this? Only a few of my pages will be using https, most of the pages on the site will be best served with just http, in fact I could get away with not using https pages at all for the time being if necessary. A

How to link to a child site-map file from a parent site map in ASP.NET MVC4 using MVCSitemapProvider?

若如初见. 提交于 2019-12-08 03:30:34
问题 I am using MVCSitemapProvider by Maarten Balliauw with Ninject DI in MVC4. Being a large-scale web app, enumerating over the records to generate the sitemap xml accounts for 70% of the page load time. For that purpose, I went for using new sitemap files for each level-n dynamic node provider. <mvcSiteMap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-4.0" xsi:schemaLocation="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap

How to create unicode slug for unicode title?

烈酒焚心 提交于 2019-12-08 03:26:06
问题 I want to sanitize blog titles with unicode characters in url. I need to replace invalid characters and spaces with "-" for better seo rewriting like this. http://example.com/это-моя-хорошая Can anyone have any idea how to do it? 回答1: You can use this algorithm for an SEO-friendly Unicode URL: Convert the text to Unicode Normalization Form C, i.e. precomposed characters. Use a regular expression with Unicode character classes to replace each non-letter non-digit character with a space. Remove

Can I use multiple times <h1> tag one for desktop another for mobile?

痴心易碎 提交于 2019-12-08 03:25:33
I am using bootstrap-3 ,html-5. My question is, can I use <h1> tag multiple times in the same page? I am using one <h1> for desktop and another <h1> for mobile. I am bit confused after searching the question. Can any one correctly suggest me the right way? My codes are below. Are the codes SEO friendly? <div class="row"> <div class="col-sm-12 hidden-xs"> <h1>Header in Desktop</h1> </div> <div class="col-xs-12 hidden-lg hidden-md hidden-sm"> <h1>Header in Mobile</h1> </div> </div> Yes ofcourse, You can use multiple h1 tags in a single page and for SEO, google has also confirmed the use of

Using sitelinks search bar google

这一生的挚爱 提交于 2019-12-08 02:44:58
问题 I am following this guide by Google to add a sitelinks search bar on my website. The structured data markup tool shows everything to be correct. But: The search bar hasn't appeared in the search results for my website. Google has indexed the page www.example.com/search?q=%7Bsearch_term_string%7D instead: I have the exact same code as explained in the example, except the site URL of course. What am I doing wrong? Or is this expected behaviour? <script type="application/ld+json"> { "@context":

Will Google see rel=nofollow if it is added by jQuery?

*爱你&永不变心* 提交于 2019-12-08 02:36:06
问题 I'm adding a rel=nofollow attribute to links via jQuery after the page load. Will Google see this attribute? I can't find anything in Google's official documentation. 回答1: Although Google processes JavaScript and can index a lot of dynamic content, there's a special behavior when inserting rel=nofollow dynamically. It was tested[1] and they came up with this result: The nofollow in the DOM did not work (the link was followed, and the page indexed). Why? Because the modification of the a href

Search engine optimization for kml file type

老子叫甜甜 提交于 2019-12-08 02:34:00
问题 I've a web site that generates kml files. An uri like this: /tokml?gid=2846 Generates a file like this: Mt. Dana Summit Trail.kml Using Header('Content-Disposition: inline; filename="Mt. Dana Summit Trail.kml"'); in a PHP script and running on Apache http server. But a Google search on filetype:kml will not give any results from my web site. I could cache all kml files and build an uri like this: /kml/Mt. Dana Summit Trail.kml But are there any other solutions? 回答1: From my experience, Google

AJAX + SEO quick question

筅森魡賤 提交于 2019-12-08 01:08:24
问题 When users want effects to happen between page loads (ie, old content fades out then new content back in), I typically build the site as follows: index.php, about.php, etc... <?php if(@$_SERVER['HTTP_X_REQUESTED_WITH']==''){include('includes/header.php');}?> <content>blah blah blah</content> <?php if(@$_SERVER['HTTP_X_REQUESTED_WITH']==''){include('includes/footer.php');}?> this way, if Javascript is enabled, I can dynamically load the content and do whatever effect is desired, but the page