06.30
php
saved
Tin
Note
Hi AD7 this is it... PLEASE HELP!
Hi AD7 this is it... PLEASE HELP!
- THis is the structure:
- this .htaccess is placed on the root of the site, per the base install (/.htaccess)
- <IfModule mod_rewrite.c>
- RewriteEngine on
- RewriteRule ^$ app/webroot/ [L]
- RewriteRule (.*) app/webroot/$1 [L]
- </IfModule>
- this .htaccess is placed on the app directory of the site, per the base install (/app/.htaccess)
- <IfModule mod_rewrite.c>
- RewriteEngine on
- RewriteRule ^$ webroot/ [L]
- RewriteRule (.*) webroot/$1 [L]
- </IfModule>
- this .htaccess is placed on the webroot of the site, per the base install (/app/webroot/.htaccess)
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
- </IfModule>
Parsed in 0.022 seconds, using GeSHi 1.0.7.14