Add custom page title and meta description only product pages in shopify
Go to the theme.liquid file in editor and replace these lines with your existing title and meta description code. <!---- Title and description ----> <title> {% if product %} Buy {{...
View ArticleRedirect index.html and non www to www using web.config
I use a standard web.config file in my projects which are hosted on Windows servers. Now i need to redirects non www url to www with https and remove the index.html from the url....
View ArticleHow to remove .html from URL by using .htaccess
To remove .html from the URL of a page. Also, need to redirect any url with .html to the one without for example. www.example.com/page.html to www.example.com/page NOTE: When your are testing...
View ArticleBug JTableMenu: :_getNode adding components Joomla
Problem I am not sure where to start here. I have the same error showing up and new components simply don’t show up in the Joomla 3.5.6 admin Components menu. The components are installed into the site...
View ArticleAdd or Remove trailing slash from URL by using .htaccess
Right below the RewriteEngine On line, add To enforce a no-trailing-slash policy (To remove the trailing slash from URL). RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)/$ /$1 [L,R=301] To...
View ArticleHtaccess Redirect www to non-www
I would like to redirect www.example.com/xyz.html to example.com/xyz.html. The following htaccess code makes this happen. But if we need to do this for separate http and https: RewriteCond %{HTTPS}...
View ArticleRedirect HTTP to HTTPS using .htaccess
Now you just need to add the above code at your .htaccess file for redirect http to https RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://example.com/$1 [R,L] For Example:- Now, when a...
View ArticleConvert URL’s Uppercase To Lowercase By .Htaccess
Redirect all URL or Links from any uppercase latters to lowercase latters using pure mod_rewrite within an .htaccess file. RewriteEngine On RewriteBase / # If there are caps, set HASCAPS to true...
View ArticleRewrite URL after redirecting 404 error htaccess
Looks like you’ll need to specify an ErrorDocument line in .htaccess for every error you want to redirect. You can use the following as the generic redirect script to replace with custom url....
View ArticleEnable SEO friendly URLs in Opencart
We can easly create the SEO friendly URL in Opencart. Just followed the some steps in opencart admin and add the some code on .htaccess file. Kindly follow the steps: Login to your OpenCart admin...
View Article