High!

Working myself through "Getting Started", I came upon another obviously buggy/ill-configured function: the "Clean URLs". I can't even choose to activate them or not, as both options are greyed out - how can I fix this?

See you in Khyberspace!

Yadgar

Comments

styro’s picture

basically you need to configure Apache to have mod_rewrite enabled and .htaccess files enabled using the AllowOverride directive.

--
Anton
New to Drupal? | Troubleshooting FAQ
Example knowledge base built with Drupal

Yadgar’s picture

...the configuration file? I browsed the Apache subfolders, but there is not such thing as an apache.ini file!

See you in Khyberspace!

Yadgar

Yadgar’s picture

I tried httpd.conf but found it nowhere! Are there other configuration files?

See you in Khyberspace!

Yadgar

styro’s picture

Apache can be configured many different ways by different linux distros or package distros like WAMP, MAMP, apachetriad etc, and we can't guess which files will be where on your system (or even what your system is). You should really be asking for this help from your linux distro or Apache packager etc.

--
Anton
New to Drupal? | Troubleshooting FAQ
Example knowledge base built with Drupal

drupalnewbiehaha’s picture

I had the same problem when I first installed drupal, here is my quick hack.

Go to .htaccess Within

# Put where mount your drupal
# For instance, if your drupal is at http://yoursite/drupal
# then
# RewriteBase /drupal
RewriteBase / # <-- add this line
RewriteCond %{REQUEST_FILENAME} !-f
....

Hope this helps