skip to Main Content

Configure nginx language subdirectories – SEO

I'm moving a site from apache to nginx and stuck with the following configuration. I have site http://example.com/ which shows the main (English) version. Also, I have a few more languages which could be opened using correspondent subdirectories. http://example.com/de http://example.com/fr,…

VIEW QUESTION

Rewrited URL giving 404 error – SEO

I'm using mode rewrite to make seo friendly urls. Please see the code below Options +FollowSymLinks RewriteEngine on RewriteRule discover/([0-9]+)$ discover.php?page=$1 [NC,L] RewriteRule ^([^.]+)$ $1.php [NC,L] Code work in my local host but in the hosting server it doesn't work.…

VIEW QUESTION

Asp.net Dynamic page Creation issues – SEO

I created a aspx blog website which creates page dynamically. and uses unique id generated at the time of page creation as it's name. eg: http://www.websitename.com/2016/f1.aspx http://www.websitename.com/2016/f2.aspx http://www.websitename.com/2016/f3.aspx If i use this naming convention, do i have to worry about…

VIEW QUESTION

htaccess cant get rewrite seo friendly url

hi i have use many different htaccess codes, but i cant get rewrite to work. i want this url https://domain.com/category.php?cat=firm to look like this url https://domain.com/category/firm this is my latest attempt Options +FollowSymLinks RewriteEngine on RewriteRule ^([^/]*).html$ /category.php?cat=$1 [L] ErrorDocument…

VIEW QUESTION

URL Rewrite – PHP & Apache – SEO

I have links like <li><a href="search.php?domainid=5&cat=electronic">Electronic</a></li> How can I change it to <li><a href="electronic.html">Electronic</a></li> I have more than 50 categories. I am using Apache web server and PHP 5.5. Need dynamic URL Rewrite for SEO friendly URL. <li><a href="search.php?domainid=5&cat=electronic">Electronic</a></li> this…

VIEW QUESTION

How to minimize .htaccess rules? – SEO

I have a following .htaccess rules for seo friendly url : .htaccess rules : Options -MultiViews ErrorDocument 404 http://localhost/aponit/dev/not-found.php ErrorDocument 500 http://localhost/aponit/dev/404.php RewriteEngine on RewriteRule ^(?:zones/)?update/(w+)/?$ zones/update.php?z=$1 [L,QSA,NC] RewriteRule ^(?:cable-types/)?update/(w+)/?$ cable-types/update.php?cbl=$1 [L,QSA,NC] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.+?)/?$…

VIEW QUESTION
Back To Top
Search