Agaric Design Collective

Clean URL paths for Drupal with Apache on Debian

 
By Benjamin Melançon
on 22 Jul
0 comments

Enabling clean urls (really, fixing a broken configuration of Apache to allow path rewriting). Changes/additions in bold.

(Note: this example is for overall or default redirection, but the relevant parts in bold apply to any Drupal Apache conf file.)

NameVirtualHost *:80
<VirtualHost *:80>
    ServerAdmin webmaster@pwgd.org

    DocumentRoot /var/www/drupal-5-live
    <Directory />
        Options FollowSymLinks
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
    <Directory /var/www/drupal-5-live>
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>

</VirtualHost>

http://drupal.org/node/43783#comment-93511

 

Post new comment
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <blockquote> <h1> <h2> <h3> <h4> <h5> <h6> <small> <pre> <strike> <sub> <sup> <kbd> <s>
  • Lines and paragraphs break automatically.
  • Web page addresses and e-mail addresses turn into links automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.