$php_mysql$ Posted May 26, 2012 Share Posted May 26, 2012 Hi all, my current url shows like this http://www.site.com/details.php?category=categoryname&id=1 what could be done to make it seo friendly please help out. thanks a ton. Quote Link to comment https://forums.phpfreaks.com/topic/263162-help-re-write-seo-friendly-url-please-someone/ Share on other sites More sharing options...
MarPlo Posted May 26, 2012 Share Posted May 26, 2012 Hi Try this rule in htaccess: RewriteRule ^details/([a-zA-z0-9-]+)_([0-9]+)$ details.php?category=$1&id=$2 [NC,L] The URL will be: http://www.site.com/details/category_1 Quote Link to comment https://forums.phpfreaks.com/topic/263162-help-re-write-seo-friendly-url-please-someone/#findComment-1348755 Share on other sites More sharing options...
$php_mysql$ Posted May 26, 2012 Author Share Posted May 26, 2012 thanks soo much but its not taking any effect. my current htaccess file looks like this DirectoryIndex index.php ErrorDocument 404 http://www.site.com ErrorDocument 403 http://www.site.com RewriteEngine On RewriteCond %{HTTP_HOST} ^site\.com$ [NC] RewriteRule ^(.*)$ http://www.site.com/$1 [R=301,L] RewriteRule ^details/([a-zA-z0-9-]+)_([0-9]+)$ details.php?category=$1&id=$2 [NC,L] <IfModule mod_deflate.c> <FilesMatch "\.(css|x?html?|php)$"> SetOutputFilter DEFLATE </FilesMatch> </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresByType text/css A100 ExpiresByType text/html A100 </IfModule> i have got about 8 categories which looks like this category=animal, category=birds etc etc and details are shown according to category like category=birds&id=23 Quote Link to comment https://forums.phpfreaks.com/topic/263162-help-re-write-seo-friendly-url-please-someone/#findComment-1348758 Share on other sites More sharing options...
$php_mysql$ Posted June 3, 2012 Author Share Posted June 3, 2012 anyone? Quote Link to comment https://forums.phpfreaks.com/topic/263162-help-re-write-seo-friendly-url-please-someone/#findComment-1350916 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.