skip to Main Content

Using Apache mod rewrite to modify a query string

I know it is possible to use mod rewrite in my htaccess Take: http://example.com/directory/perlscript.pl?base64encodedquery=jhfkjdshfsdf78fs8y7sd8 Make a shorter URL: http://example.com/? whatever just want to make it prettier Incoming: I am using use CGI; thus $qry->param('base64encodedquery')); Then I use use MIME::Base64 to…

VIEW QUESTION

WordPress, Varnish, Apache, SSL

i have installed wordpress and i've set SSL (LetsEncrypt). It works fine since few months. Now i want to add Varnish to speed up site and i have one issue. My config is: MyPage.com (443) -> Varnish (80) -> MyPage…

VIEW QUESTION

Yii2 + Nginx(proxy) + Apache(back)

I'm learning NGINX and I need to set a frontend webserver with NGINX and a backend webserver with Apache using .htaccess This is the content of /etc/nginx/sites-available/my_test5.loc server { charset utf-8; client_max_body_size 128M; listen 80; server_name my_test5.loc; root /var/www/my_test5.loc/web; #root…

VIEW QUESTION

laravel all urls 404 without index.php – Apache

Every thing is working fine including HTTP to https redirection on browsers http://example.com/app/login 404 https://example.com/app/login 404 http://www.example.com/app/login 404 https://www.example.com/app/login 404 http://example.com/index.php/app/login OK https://example.com/app/index.php/login OK http://www.example.com/index.php/app/login OK https://www.example.com/index.php/app/login OK URLs tested with postman http to https redirection works fine respecting www…

VIEW QUESTION
Back To Top
Search