Server is Ubuntu
Webserver is Apache2
my friend has an alias in httpd.conf for his dir.
i wrote one for too for mine dir.
his works mine not.
The Server Message is:
You don't have permission to access $PATH on this server.
:evil:
Error Log:
client denied by server configuration /home/user/public_html
httpd.conf:
Code: Select all
<Directory />
Options None
AllowOverride None
Order deny,allow
Deny from all
</Directory>
AddType application/x-httpd-php .php .php3. php4
AddType .php text/html .shtml
DirectoryIndex at_domains_index.html index.html index.shtml index.htm
Alias /chaos "/home/chaos/public_html"
<Directory "/home/chaos/public_html">
Options Indexes MultiViews FollowSymlinks
RewriteEngine On
RewriteRule ^/?sid[a-z]*([a-zA-Z0-9,-]{32}|[a-zA-Z0-9,-]{40})(./*) $2 [QSA]
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Alias /cromatic "/home/cromatic/public_html"
<Directory "/home/cromatic/pubilc_html">
Options Indexes MultiViews FollowSymlinks
RewriteEngine On
RewriteRule ^/?sid[a-z]*([a-zA-Z0-9,-]{32}|[a-zA-Z0-9,-]{40})(./*) $2 [QSA]
AllowOverride All
Order allow,deny
Allow from all
</Directory>
# Alias /phpmyadmin ""
# <Directory "">
# Options Indexes MultiViews
# AllowOverride None
# Order allow,deny
# Allow from all
#</Directory>
# includes the icons
Include /etc/apache2/autoindex-defaults.conf
Wow that works. But only that way. Why not the direct one ?
Any tips or hints ?
All rights (permissions) are set, otherwise the symlink wont work.
thx for help
msgbeep
ps: a restart after editing httpd.conf doesnt matter the problem. ](*,)