Search results

  1. A

    htaccess redirect help

    oh okay. will try to talk to hawkhost people and find if they can help to resolve this .. thanks a ton again for some prompt help
  2. A

    htaccess redirect help

    i am on shared hosting and i was reading forums saying RewriteMap lc int:tolower has to go in httpd.conf and i am surprise if i am allowed to do so..
  3. A

    htaccess redirect help

    tried this <IfModule mod_rewrite.c> RewriteEngine On #WWW redirect RewriteCond %{HTTP_HOST} !^www\.wildart\.in$ RewriteRule ^(.*)$ http://www.wildart.in/$1 [R=301,L] #Force lowercase urls RewriteMap lc int:tolower RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1}...
  4. A

    htaccess redirect help

    well its not the only url what i was trying to convey is i have more than 300+ such caps letter url which i want to convert to small letters. in a short i want to convert caps to small letter in url through Rewrite Rule
  5. A

    htaccess redirect help

    thanks a ton it worked. now to the 2nd point i mention would appreciate if you can help me out redirecting the caps to small letters conversion in url's.
  6. A

    htaccess redirect help

    i did like this but it still not working <IfModule mod_rewrite.c> RewriteEngine On #WWW redirect RewriteCond %{HTTP_HOST} !^www.wildart\.in$ RewriteRule ^/(.*)$ http://www.wildart.in/$1 [R=301,L] RewriteBase / RewriteRule ^admin/?$ zp-core/admin.php...
  7. A

    htaccess redirect help

    you mean after RewriteEngine On ?
  8. A

    htaccess redirect help

    I also wanted to add one more new feature which it seems not working say i have url http://www.wildart.in/Gulls and http://www.wildart.in/Gulls/Laughing_gull WHich i wanted to convert to http://www.wildart.in/gulls and http://www.wildart.in/gulls/laughing_gull likewise for...
  9. A

    htaccess redirect help

    here is the entire htaccess as i have many other rules which are working though i still using cloudflare. ==================== # htaccess file version 1.4.1; # When Zenphoto requires changes to the rewrite rules: # First make a copy of this file as 'oldhtaccess' in the zp-core folder so setup...
  10. A

    htaccess redirect help

    well yeah i use cloudflare service. does it make any differ as i thought it would just be a caching server for images.
  11. A

    htaccess redirect help

    need to redirect url from http://mydomain.tld to http://www.mydomain.tld i have wrote RewriteCond %{HTTP_HOST} ^wildart.in [NC] RewriteRule ^(.*)$ http://www.wildart.in/$1 [R=301,L] in my htaccess and still it cant redirect i am using hawkhost shared hosting. please help.
Top