Re: [users@httpd] RewriteRule and redirect loop with htaccess

2024-08-02 Thread Frank Gingras
On Fri, Aug 2, 2024 at 11:08 AM Dave Wreski wrote: > Hi, > > I have a rewrite that's creating a loop because the origin is contained in >> the final destination. I know it then is processed again by the .htaccess >> in the document root, but I don't understand why or how to stop it. What's >> the

Re: [users@httpd] RewriteRule and redirect loop with htaccess

2024-08-02 Thread Dave Wreski
Hi, I have a rewrite that's creating a loop because the origin is contained in the final destination. I know it then is processed again by the .htaccess in the document root, but I don't understand why or how to stop it. What's the solution here? RewriteRule ^/features/l

Re: [users@httpd] RewriteRule and redirect loop with htaccess

2024-08-02 Thread Frank Gingras
On Fri, Aug 2, 2024 at 10:18 AM Dave Wreski wrote: > Hi, > > I have a rewrite that's creating a loop because the origin is contained in > the final destination. I know it then is processed again by the .htaccess > in the document root, but I don't understand why or how to stop it. What's > the so

[users@httpd] RewriteRule and redirect loop with htaccess

2024-08-02 Thread Dave Wreski
Hi, I have a rewrite that's creating a loop because the origin is contained in the final destination. I know it then is processed again by the .htaccess in the document root, but I don't understand why or how to stop it. What's the solution here? RewriteRule ^/features/linux-malware-the-tru

Re: [users@httpd] temporary enable/disable access

2024-08-02 Thread Frank Gingras
On Fri, Aug 2, 2024 at 6:55 AM Eric Covener wrote: > > >46 Order deny,allow > > This allows access by default. > "Order allow,deny" denies access by default. > > > > The idea is that I can quickly limit access to the website by > > > uncommenting just a single line in the conf

Re: [users@httpd] temporary enable/disable access

2024-08-02 Thread Eric Covener
> >46 Order deny,allow This allows access by default. "Order allow,deny" denies access by default. > > The idea is that I can quickly limit access to the website by > > uncommenting just a single line in the config. However when I change it > > to > > > >47 #Deny

RE: [users@httpd] temporary enable/disable access

2024-08-02 Thread Marc
> > > I have currently such virtual host config: > > > 1 > 2 AllowOverride All > 3 Require all granted > 4 > >45 >46 Order deny,allow >47 Deny from all >48 #Allow from all >