Re: [users@httpd] Trubble with rewrite rules

2016-12-16 Thread Thomas Schweikle
On 16.12.2016 16:46, Eric Covener wrote: > On Fri, Dec 16, 2016 at 10:26 AM, Thomas Schweikle > wrote: >>RewriteRule ^/xyz/(.*) "/abc/$1" [R,L] > > > When this rule was first -- If it's in htaccess, the ^/ will not > match. Your other rule accoun

[users@httpd] Trubble with rewrite rules

2016-12-16 Thread Thomas Schweikle
Hi! I am redirecting all connections to https: RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] That is working so far. Now an other thing to do I've moved some content to an other place and I want users accessing the old place to be redir

[users@httpd] Rewrite Issues

2016-05-14 Thread Thomas Schweikle
Hi! Trying to rewrite an URL: '' (nothing) To: /~/output I've defined: RewriteCond %{LA-U:REMOTE_USER} !^$ RewriteCond %{HTTP_URI} ^/*$ RewriteRule ^/*$ /~%{LA-U:REMOTE_USER} [NS] RewriteCond %{LA-U:REMOTE_USER} !^$ RewriteRule ^/~([^/]+)/?(.*)$ /~%{LA-U:REMOTE_USER}/output/$2 [NS] If I access

[EMAIL PROTECTED] Re: redirects

2007-11-22 Thread Thomas Schweikle
Joshua Slive schrieb: > On Nov 22, 2007 4:10 AM, Thomas Schweikle <[EMAIL PROTECTED]> wrote: >> Hi! >> >> I have configured apache2: >> >> ScriptAlias /mirrorlist "/usr/share/mirrorlist/mirrorlist" >> >> Options None >&g

[EMAIL PROTECTED] redirects

2007-11-22 Thread Thomas Schweikle
Hi! I have configured apache2: ScriptAlias /mirrorlist "/usr/share/mirrorlist/mirrorlist" Options None AllowOverride None Order allow,deny Allow from 172.16.0.0/16 Allow from 192.168.0.0/16 RewriteEngine on RewriteRule "^/?(.*)$" "/mirrorlist?$1" But this only leads to 4

[EMAIL PROTECTED] Re: php and apache22

2006-02-23 Thread Thomas Schweikle
François Conil schrieb: > Thomas Schweikle a écrit : > >> >> In /var/log/messages the error did not show up --- it looks like >> this is somewhere crunched in the startup script. Starting >> apache directly I am prompted with: "No such file or directory: >>

[EMAIL PROTECTED] Re: php and apache22

2006-02-22 Thread Thomas Schweikle
François Conil schrieb: > Thomas Schweikle a écrit : >> François Conil schrieb: >> >>> Thomas Schweikle a écrit : >>> >>>> Hi! >>>> >>> >>> >>> >>> Hello, >>> >>> Try to look after a fi

[EMAIL PROTECTED] Re: php and apache22

2006-02-22 Thread Thomas Schweikle
[EMAIL PROTECTED] schrieb: > Are you using an old mod_php4 compiled for Apache 2.0.xx? No, I have compiled mod_php4 for apache 2.2.x from scratch (or better I did: "portupgrade -rRf php4 apache22" after deinstalling apache 2.0.x then installing apache 2.2.x --- just to make sure all depending libr

[EMAIL PROTECTED] Re: php and apache22

2006-02-22 Thread Thomas Schweikle
François Conil schrieb: > Thomas Schweikle a écrit : >> Hi! >> > > > Hello, > > Try to look after a file named extensions.ini and comment out the > extensions that are loaded twice at startup. OK. There where three PHP4 extensions duplicate: imagick.so fribi

[EMAIL PROTECTED] php and apache22

2006-02-22 Thread Thomas Schweikle
Hi! starting apache22 with mod_php4 I am prompted with various error messages: PHP Warning: Function registration failed - duplicate name - imagick_ordereddither in Unknown on line 0 PHP Warning: Function registration failed - duplicate name - imagick_composite in Unknown on line 0 PHP Warning:

[EMAIL PROTECTED] Re: Invalid command 'Order'

2006-02-22 Thread Thomas Schweikle
Robert Ionescu schrieb: > Thomas Schweikle wrote: >> Which module is missing if I am given the error: "Invalid >> command 'Order', perhaps misspelled or defined by a module not >> included in the server configuration"? > > in Apache 2.0/1.3 it&#x

[EMAIL PROTECTED] Invalid command 'Order'

2006-02-22 Thread Thomas Schweikle
Hi! Which module is missing if I am given the error: "Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration"? Is there any reference available showing up what modules provide which commands? -- Thomas --