Well I believe I've figured it out,
here's what I'm using for my main .htaccess file and using
ISAPI_Rewrite 3
CODE
# Helicon ISAPI_Rewrite configuration file
# Version 3.1.0.49
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(img|css|files|js)(/.*)?$ /app/webroot/$1/$2 [R,L]
RewriteRule ^(.*)$ /index.php?url=/$1 [L]
Hope this helps anyone else using the latest CakePHP 1.2 Build.
On Jun 17, 6:09 pm, uniacid <[EMAIL PROTECTED]> wrote:
> I've been trying to get this fixed for a few days now but I cannot
> find any info that has actually helped resolve it, I've checked a few
> other threads here and in the cake groups but nothing has help me.
>
> My only issue with my cake install is that the include files (css, js,
> img) are not being pulled, they work when I have this uncommented
>
> "Configure::write('App.baseUrl', env('SCRIPT_NAME'));"
>
> but it is not a solution as it takes away the pretty URL's which I'd
> rather keep and that is why I've been trying ISAPI_Rewrite with IIS,
> it works but then like I said not for the includes.
>
> I've tried tinkering around with the .htaccess files and I've tried
> using the originals just to make sure I didn't mess up anything and
> still no go, so maybe I'm not writing the correct rewriterule?
>
> I've tried following all the posts @ the bakery on this subject and
> the only way I got it working was with ISAPI_Rewrite 2 but it was
> affecting all my other sites hosting on IIS, does anyone know how to
> make these settings specifically for one domain?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---