Im loading a rule to create special url..
The problem, is getting out of control because the rule I made has no limit in its structure ...
my.htaccess file:
AddHandler application/x-httpd-php .htmlop
Options +FollowSymLinks
RewriteEngine on
RewriteRule finders-(.*)\.htmlop /index.php [NC,L]
Good example url :
domain.com/finders-ground.htmlop
Bad, problem url's :
domain.com/finders-ground.htmlop.htmlop
domain.com/finders-express.htmlop-
domain.com/finders-ground-express.htmlop-
To fix this I've tried :
Redirect /finders-(.*).htmlop.htmlop http://domain.com/405.html
but ,any ideas?