skip to Main Content

HTACCESS for given url – SEO

I'm trying to write REWRITERULE for NEW url. old url : https://www.ex.com/hindu-bbb-10/2 old htaccess: RewriteCond %{HTTP_HOST} ex.com$ [NC] RewriteCond %{REQUEST_URI} (bbb|ggg) RewriteRule ^(.+?)/(.+?)(/?)$ seo/index.php?cat=$2&title=$1 [NC,L] by using above htaccess I could get values from REQUEST like as folllows [cat] =>…

VIEW QUESTION

Display dynamic URLs in CodeIgniter for seo

I'm building an online store based on CodeIgniter. I'd like URLs to look like this? What is the solution for this type of SEO friendly url. http://example.com/[product-category]/[product-sub category] I need this url: example.com/women/sarees-sari But my url is generated example.com/Product/item/MQ==/women/sarees-sari /Product/…

VIEW QUESTION

Add sort variable at end of URL and manipulate if already exists in URL – SEO

Hi I had URLs like this... www.example.com/list.php?type=vehicles&stype=Cars www.example.com/list.php?type=vehicles&stype=Cars&loc=Ludhiana And to sort results, sort variable was appending at last of URL and URL after adding sort variable was www.example.com/list.php?type=vehicles&stype=Cars&sort='**ANYVALUE**' www.example.com/list.php?type=vehicles&stype=Cars&loc=Ludhiana&sort='**ANYVALUE**' And on href i was using <a href="?<?php echo http_build_query(array_merge($_GET, array('sort'…

VIEW QUESTION
Back To Top
Search