Sign up to create your own snipts, or login.

Public snipts » robertbanh's snipts » Rewrite .htaccess to EE's engine if directory conflicts with existing directory

posted on Feb 03, 2010 at 10:10 a.m. EST in 
  • RewriteEngine On
    RewriteBase /
    
    # if the file/dir does not exist, append index.php 
    # which will call EE and pull up it's structured url
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/interact/$1 [L]
    

    copy | embed

0 Comments

Sign up, or login to leave a comment.