Documentation on Pretty URL's could use some clarification
Posted: Wed Jan 16, 2008 5:07 pm
The documentation on enabling Pretty URL's is not clear to me and therefore is probably not clear to other non-coders out there.
Currently it states :
What is confusing about this is that it is an either/or decision. If you choose to use the internal mechanism, then you do not want to enable mod_rewrite. And if you choose mod_rewrite, you do not want to also have the internal mechanism enabled. right?
The way it is written and the way a newbie would be following the instructions would imply that it is OK to have the internal mechanism enabled and also have mod_rewrite enabled. At least that's how I interpret it.
Am I wrong?
Currently it states :
Code: Select all
The internal mechanism is handled entirely within PHP and doesn't require mod_rewrite in Apache. However, it won't work on IIS, and if you do enable it, you must also ensure that your template contains a {metadata} tag. To enable it, set this option to true:
$config['internal_pretty_urls'] = true;
If you want to use mod_rewrite to handle URLs, you need to enable this:
$config['assume_mod_rewrite'] = true;
The way it is written and the way a newbie would be following the instructions would imply that it is OK to have the internal mechanism enabled and also have mod_rewrite enabled. At least that's how I interpret it.
Am I wrong?