I tried moving it up one level, it does not work that easy, I wish it did though. I think I would have to rewrite the whole code of metadot to do that, but I need to find a much easier way,LOL.
I may need to look at something to do with a mod rewrite or maybe something with the template fragment
I can change the Alias to what ever name I want, but thats not what I'm after
Alias /whatever/ /home/e-smith/files/ibays/Primary/html/metadot/
Example of Template
#Metadot
Alias /images/ /home/e-smith/files/ibays/Primary/html/images/
Alias /js/ /home/e-smith/files/ibays/Primary/html/js/
Alias /metadot/ /home/e-smith/files/ibays/Primary/html/metadot/
Alias /public/ /home/e-smith/files/ibays/Primary/html/sitedata/public/
Alias /skins/ /home/e-smith/files/ibays/Primary/html/sitedata/skins/
Alias /htmlarea3/ /home/e-smith/files/ibays/Primary/html/js/htmlarea3/
Alias /private/ /home/e-smith/files/ibays/Primary/html/sitedata/private/
<Directory /home/e-smith/files/ibays/Primary/html/metadot>
Options +Indexes
Options +Includes
AllowOverride All
SetHandler cgi-script
PerlHandler speedy::Registry
PerlSendHeader On
Options +ExecCGI
AddType application/.html .pl .pm
DirectoryIndex index.pl
</Directory>
This html file is associated with it somehow
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="refresh" content="0;url="/metadot/index.pl" />
<title>Loading</title>
</head>
<body onload="document.location='/metadot/index.pl'">
<!-- the following block was used to allow Firefox to redirect, since
it has a bug with http-equiv. This is now being fixed with the javascript entry above.
-->
<!--
<div style="margin: 30px; padding: 1em; border: 1px solid #ccc; background-color: #eee;">
You are being transported to the Metadot portal server.
<a href="/metadot/index.pl">Click here if you have not been redirected.</a>
</div>
-->
</body>
</html>
Is it possible to change the Alias in the template to use these instead
AliasMatch
ScriptAlias
ScriptAliasMatch
I'm looking for some option that will still load the script, but not show the refernce in the url.
I have tried mod_rewrites in the httpd.conf which will load the index.pl but not metadot.
any ideas on what is a good option to try
Russell