Hello, I have a custom script that uses .htaccess for redirection The redirection code is RewriteRule ^link/([/_0-9a-zA-Z-]+)$ link.php?id=$1 The code was working fine in Hosgator, but it is not working in GoDaddy. Does GoDaddy support such redirections? Regards, Anup
You need to have the mod rewrite module activated. check with godaddy they did that for your account.
Yes I have RewriteEngine On Here is what I have RewriteEngine on RewriteBase / RewriteRule ^(.*)\.html$ index.php?pg=$1 [R] RewriteRule ^link/([/_0-9a-zA-Z-]+)$ link.php?id=$1 [R] RewriteRule ^sitemap.xml$ sitemap.php [L] RewriteRule ^rssfeed.xml$ rssfeed.php [L] Only this line of code is not working as desired. RewriteRule ^link/([/_0-9a-zA-Z-]+)$ link.php?id=$1 [R] Any ideas? Regards, Anup