Hello,

I'm trying to setup drupal on RedHat 9 + Apache 2.054.
The links appears not to be working ...

Clicking on a link gives a dir. listing.

Any thoughts? I'm using the default .htaccess from Drupal.

Regards,

Marc

Comments

nevets’s picture

It sounds like you are entering a url and seeing the front page for drupal but when you click on a link you see a directory listing.
In sites/default there is a file called settings.php. The base url ($base_url) should probably be set to the url you used to access the front page.
So if you used something like http://www.example.com the setting would read

$base_url = 'http://www.example.com'

and if your url lookes somethine like http://www.example.com/drupal the the setting would read

$base_url = 'http://www.example.com/drupal';