1
MoinMoin!
Ich versuche jetzt schon seit einigen Wochen (immer mal nebenbei) mod_rewerite auf unserem Windows 2008 Server zum laufen zu bekommen - bisher leider relativ erfolglos.
Der Artikel hier hat mir wieder einigermaßen einen Lichtblick verschafft:
http://notizen.joergkrusesweb.de/2004-3/rewrite.html
Allerdings hab ich ein Problem mit dem letzten Punkt:
In der httpd.conf vom Plesk (ist die Einzige, die ich gefunden hab) gibt es mehrere Directory Verweise. Ansich würd ich jetzt alle durchprobieren, wenn da nicht sowieso noch einige weitere Parameter wären, die mich geringfügig irritieren.
Die Stellen inder httpd.conf schauen folgendermaßen aus:
Ich bin mir nciht sicher, dass da der Fehler liegt, aber ansosnten fällt mir da nicht ein (und das ist leider so garnicht mein Gebiet, insofern entschuldigt bitte die viele Codeschnipsel).
Die Webseiten ansich liegen auf einem Pfad in D:, funktionieren ansonsten aber alle einwandfrei.
Wie oben schon angemerkt, werden die Seiten durch Plesk 8.4 verwaltet.
Hoffe hier kann mir endlich jemand helfen.
Mit besten Grüßen,
frohe Ostern wünschend,
Richard
Ich versuche jetzt schon seit einigen Wochen (immer mal nebenbei) mod_rewerite auf unserem Windows 2008 Server zum laufen zu bekommen - bisher leider relativ erfolglos.
Der Artikel hier hat mir wieder einigermaßen einen Lichtblick verschafft:
http://notizen.joergkrusesweb.de/2004-3/rewrite.html
Allerdings hab ich ein Problem mit dem letzten Punkt:
Falls dies nicht der Fall sein sollte, sollte überprüft werden, a) ob in der Datei httpd.conf das Verzeichnis für das Document Root korrekt angegeben ist, d.h. das Windows-Verzeichnis, in welchem die Webseiten untergebracht sind (im folgenden Beispiel der Pfad bei unveränderter Standardinstallation):
<Directory "C:/Programme/Apache_Group/Apache/htdocs">
In der httpd.conf vom Plesk (ist die Einzige, die ich gefunden hab) gibt es mehrere Directory Verweise. Ansich würd ich jetzt alle durchprobieren, wenn da nicht sowieso noch einige weitere Parameter wären, die mich geringfügig irritieren.
Die Stellen inder httpd.conf schauen folgendermaßen aus:
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:\Program Files (x86)\Plesk\admin/htdocs"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride All
#BEGIN_REQUIRE_SSL
SSLRequireSSL
#END_REQUIRE_SSL
</Directory>
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:\Program Files (x86)\Plesk\admin\htdocs">
#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received. Be especially careful to use
# proper, forward slashes here. On Windows NT, "Personal/My Website"
# is a more appropriate choice.
#
#UserDir "My Documents/My Website"
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
# You must correct the path for the root to match your system's configured
# user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
# or whichever, as appropriate.
#
#<Directory "C:/Documents and Settings/*/My Documents/My Website">
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings. If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "C:\Program Files (x86)\Plesk\admin\icons\"
<Directory "C:\Program Files (x86)\Plesk\admin\icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "C:/Program Files (x86)/Plesk/admin/cgi-bin/"
#
# "C:/Program Files (x86)/Plesk/admin/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/Program Files (x86)/Plesk/admin/cgi-bin">
AllowOverride All
Options None
Order allow,deny
Allow from all
</Directory>
Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections. We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
#
# Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# @exp_errordir@/include/ files and copying them to /your/include/path/,
# even on a per-VirtualHost basis. The default include files will display
# your Apache version number and your ServerAdmin email address regardless
# of the setting of ServerSignature.
#
# The internationalized error documents require mod_alias, mod_include
# and mod_negotiation. To activate them, uncomment the following 30 lines.
# Alias /error/ "@exp_errordir@/"
#
# <Directory "@exp_errordir@">
# AllowOverride None
# Options IncludesNoExec
# AddOutputFilter Includes html
# AddHandler type-map var
# Order allow,deny
# Allow from all
# LanguagePriority en cs de es fr it nl sv pt-br ro
# ForceLanguagePriority Prefer Fallback
# </Directory>
#
# ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
# ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
# ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
# ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
# ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
# ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
# ErrorDocument 410 /error/HTTP_GONE.html.var
# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
# ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
# ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
# ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
# ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
# ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
# ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
# ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
# ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
Ich bin mir nciht sicher, dass da der Fehler liegt, aber ansosnten fällt mir da nicht ein (und das ist leider so garnicht mein Gebiet, insofern entschuldigt bitte die viele Codeschnipsel).
Die Webseiten ansich liegen auf einem Pfad in D:, funktionieren ansonsten aber alle einwandfrei.
Wie oben schon angemerkt, werden die Seiten durch Plesk 8.4 verwaltet.
Hoffe hier kann mir endlich jemand helfen.
Mit besten Grüßen,
frohe Ostern wünschend,
Richard