06.30 php saved
Tin
Tags add more
 
Note
Hi AD7 this is it... PLEASE HELP!
  1. THis is the structure:
  2.  
  3. this .htaccess is placed on the root of the site, per the base install (/.htaccess)
  4. <IfModule mod_rewrite.c>
  5.    RewriteEngine on
  6.    RewriteRule    ^$ app/webroot/    [L]
  7.    RewriteRule    (.*) app/webroot/$1 [L]
  8. </IfModule>
  9.  
  10.  
  11. this .htaccess is placed on the app directory of the site, per the base install (/app/.htaccess)
  12.  
  13. <IfModule mod_rewrite.c>
  14.     RewriteEngine on
  15.     RewriteRule    ^$    webroot/    [L]
  16.     RewriteRule    (.*) webroot/$1    [L]
  17.  </IfModule>
  18.  
  19. this .htaccess is placed on the webroot of the site, per the base install (/app/webroot/.htaccess)
  20.  
  21. <IfModule mod_rewrite.c>
  22.     RewriteEngine On
  23.     RewriteCond %{REQUEST_FILENAME} !-d
  24.     RewriteCond %{REQUEST_FILENAME} !-f
  25.     RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
  26. </IfModule>
Parsed in 0.022 seconds, using GeSHi 1.0.7.14

Modify this Paste