How to add a subdirectory that runs PHP scripts

From EPrints Documentation
Revision as of 20:41, 18 February 2010 by Dkane (talk | contribs) (Created page with '== Make an Exception in urls.pl == Go to: [eprint install dir]/archives/[archive]/cfg/cfg.d/urls.pl Amend this line to include the directory you want to make an exception for. …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Make an Exception in urls.pl

Go to: [eprint install dir]/archives/[archive]/cfg/cfg.d/urls.pl

Amend this line to include the directory you want to make an exception for.

$c->{rewrite_exceptions} = [ '/cgi/', '/archive/', '/blog/'];

Here we are adding the directory /blog/ to the array.

Close that and open this file: [eprint install dir]/archives/[archive]/cfg/apachevhost.conf

And add the following.

Alias /blog/ /path/to/blog/ <Location "/blog">

  AddHandler php5-script php
  DirectoryIndex index.php

</Location> <Directory /path/to/blog>

  Order allow,deny
  Allow from all

</Directory>

Restart Apache