skip to Main Content

Apache2 mod_rewrite difficulty with GET variables

On the website.conf file I have: <VirtualHost *:80> DocumentRoot /srv/http/website/cgi-bin ServerName website ServerAlias www.website RewriteEngine on RewriteRule ^$ "" RewriteRule ^([a-z]+)$ /?tab=repo ... My goal is to have http://localhost/ redirect to localhost and http://localhost/word redirect to http://localhost/?tab=word. With the current…

VIEW QUESTION

How can I disable tls/crypto on apache 2.4, php 8, sendmail, typo3 11 with local mail exchange server?

These are my settings: sendmail.ini smtp_server = 10.1.xxx.xxx smtp_port=25 smtp_ssl=none php.ini [mail function] SMTP = 10.1.xxx.xxx smtp_port = 25 sendmail_path = "C:Webserversendmailsendmail.exe -t" Typo3 'MAIL' => [ 'defaultMailFromAddress' => '[email protected]', 'defaultMailFromName' => 'Domain', 'transport' => 'smtp', 'transport_sendmail_command' => '', 'transport_smtp_encrypt'…

VIEW QUESTION

errors while installing php for apache

i'm installing php so that i can use it with the apache software and i've followed the guide here: https://www.geeksforgeeks.org/how-to-install-php-on-apache-in-windows/ but when i do the command : httpd -t i get the error : httpd: Syntax error on line 538…

VIEW QUESTION
Back To Top
Search