So... you're saying that using the rule below to turn this url...

http://mysite.com/hello

... into this...

http://mysite.com/page.cfm?name=hello


... the same rule might rewrite the following url...

http://mydomain.com/images/whatever.jpg

... thusly...

http://mydomain.com/index.cfm?name=images/whatever.jpg

...?

Hmm... Then I'd want the rule to only rewrite urls that had only a folder name, 
such as 

http://mysite.com/hello/

with nothing after it.




At 12:43 AM 1/25/2010, Judah McAuley wrote:

>I don't have the config file for my former install here, but I'll look
>around for it. Basically, you need to first catch/exclude the patterns
>you don't want to rewrite, like /images, /stylesheets, etc. and then
>use your generic rewrite rule.  I've not used ReWrite Base before, so
>I can't help you there, but fundamentally, declare your exceptions
>first, match them to the directories they ought to hit, then have
>everything else be caught by your generic rewrite pattern.
>
>Hope that helps,
>Judah
>
>On Sun, Jan 24, 2010 at 4:31 PM, Michael Muller <[email protected]> wrote:
>>
>> Hey all,
>>
>> I'm having trouble conceptualizing something here.
>>
>> I just installed Helicon ISAPI_Rewrite so I can turn the following URLs...
>>
>> http://mysite.com/hello
>>
>> ... into this...
>>
>> http://mysite.com/page.cfm?name=hello
>>
>>
>> I have the following config set:
>>
>> RewriteEngine on
>> #RewriteBase /
>> RewriteRule ^([^/]+)$ /index.cfm\?name=$1 [NC,L]
>>
>>
>> It works well if I uncomment the RewriteBase line, but when I do that every 
>> other page on the site (that I don't want to rewrite just yet) loses its 
>> meta base path and can't find css files or any images.
>>
>> Anyone have experience with this module or a better grasp of regex than me?
>>
>> Thanks,
>>
>> Mik
>>
>>
>>
>> --------
>> Michael Muller
>> cell (413) 320-5336
>> skype: michaelBmuller
>> http://MontagueWebWorks.com
>>
>> Information is not knowledge
>> Knowlege is not wisdom
>>
>> Eschew Obfuscation
>>
>>
>>
>> 
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330095
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to