regex - htaccess breaks indexs -


this works perfect: ^(.*)$ (lets site.com/login.php work site.com/login) except breaks indexes. can't index file show up, index set same .htaccess file. shows blank page until remove ^(.*)$. thoughts?

rrelated question: htaccess regex 2 periods in file name

^(.*)$ matches anything, nothing. force require @ least 1 character instead.

^(.+)$ 

Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -

c# - Binding attached property to IEnumerable -