hello i need some help with htaccess url rewrite i want this when user open the url www.mywebsite.com/12345 then he get redirected to the page www.mywebsite.com/index.php?id=12345 and when user opens www.mywebsite.com/anyfolder/12345 then he get redirected to www.mywebsite.com/anyfolder/index.php?id=12345 plz help me about this what code i should use in htaccess file to get this thing working
RewriteEngine OnRewriteCond %{HTTP_HOST} ^(www\.)?domainnamehere\.com [NC]RewriteRule ^(.*)$ http://%{HTTP_HOST}/inder.php/$1 [R=301,L]Just give a try
RewriteEngine OnRewriteCond %{HTTP_HOST} ^(www\.)?domainnamehere\.com [NC] RewriteRule ^(.*)$ http://%{HTTP_HOST}/index.php/$1 [R=301,L]