mod_rewrite with .htaccess

on our own dns-server 64.191.47.114 the .htaccess file with some mod_rewrite stuff woks fine but it doesnt on our reseller ip 64.191.51.125!

the .htaccess-file with the following content is placed in our reseller account but doenst work on our customer accounts:

Options -Indexes
DirectoryIndex index.php index.html

RewriteEngine On

RewriteCond %{REQUEST_URI} !^/*index.php
RewriteCond %{REQUEST_URI} !^/*index_interface.html
RewriteCond %{REQUEST_URI} !^/*robots.txt
RewriteCond %{REQUEST_URI} !^/*webalizer
RewriteCond %{REQUEST_URI} !^/*README
RewriteCond %{REQUEST_URI} !^/*js
RewriteCond %{REQUEST_URI} !^/*api
RewriteCond %{REQUEST_URI} !^/*pot
RewriteCond %{REQUEST_URI} !^/*svg
RewriteCond %{REQUEST_URI} !^/*img
RewriteCond %{REQUEST_URI} !^/*images
RewriteCond %{REQUEST_URI} !^/*admin/
RewriteCond %{REQUEST_URI} !^/*files
RewriteCond %{REQUEST_URI} !^/*scripts
RewriteCond %{REQUEST_URI} !^/*css
RewriteCond %{REQUEST_URI} !^/*php/.*\.php
RewriteCond %{REQUEST_URI} !.*\.xml
RewriteCond %{REQUEST_URI} !.*\.gif
RewriteCond %{REQUEST_URI} !.*\.js
RewriteCond %{REQUEST_URI} !.*\.css

RewriteRule ^/*(.+)\.html$ ./index.php?$1 [QSA]

 

 

 

 

Top