balance
Junior Member   Posts: 18 Registered: 6/25/2004 Status: Offline
|
posted on 8/24/2004 at 06:03 PM |
Finally I have my site properly hosted so I have turned on AutoURLS (select
.phtml from the config option and renamed phtml.acess to .htaccess) to end
up with "page not found errors" on all pages. mod_rewrite is loaded on the
server.
Any clues would be much appreciated.
[Edited on 24/8/2004 by balance] |
| |
| |
sndinc
Newbie   Posts: 7 Registered: 5/4/2004 Status: Offline
|
posted on 8/26/2004 at 04:38 AM |
I have the same problem and would appreciate a suggestion...I know my
rewrite rule is on as it works on another site one the same server and that
one works with the Cold Rolled Steel's Short URL theme. I renamed the
phtml.htaccess to .htaccess and made sure the setting in Autotheme settings
was set to phtml. I also get page can not be displayed. |
| |
sndinc
Newbie   Posts: 7 Registered: 5/4/2004 Status: Offline
|
posted on 8/26/2004 at 02:30 PM |
My resolution.....the virtual host was ignoring my htaccess files. Changed
the AllowOverride option in Apache and now it works fine....at least the
way it's supposed to. |
| |
balance
Junior Member   Posts: 18 Registered: 6/25/2004 Status: Offline
|
posted on 8/26/2004 at 05:32 PM |
Can you tell me where the allow override option is and what setting worked
for you. Thanks. |
| |
sndinc
Newbie   Posts: 7 Registered: 5/4/2004 Status: Offline
|
posted on 8/26/2004 at 06:43 PM |
There is a section in the httpd.conf that sets the default value and ti
looks like this:
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
Under that I added this section (the directory is equal to the data path of
the virtual host):
<Directory "E:/webroot/support/html/">
Options None
AllowOverride All
</Directory>
The AllowOverride is what makes the difference for Apache to allow the
htaccess file to be recognized. |
| |