skip to Main Content

redirect loop with mod_rewrite – Apache

I'm trying to add a language prefix to my pages through mod_rewrite eg: https://example.com/ > https://example.com/en/ and internally it need to translate to `https://example.com/?language=en I've managed to do it for the base url, but when I try to do it…

VIEW QUESTION

Mask URL rewrite in htaccess – Apache

I have a wordpress website in project and I want to mask the URL of all the pages so that when accessing them: https://myweb.com/survey/page1 https://myweb.com/survey/page2 .... is displayed as: https://myweb.com/survey/portal I have this on .htaccess but it doesn't work: RewriteEngine…

VIEW QUESTION

htacess RewriteRule http://domain/folder/(any searchstring) to redirect to http://domain/folder/index.php?option=$1 – Apache

I am trying to create a rewrite rule in my Apache .htaccess file and the goal is: http://domain/folder/(any search string) to redirect to http://domain/folder/index.php?option=$1 example: http://domain/folder/covid to redirect to http://domain/folder/index.php?option=covid I got this setup in htacess in http://domain/folder, but somehow…

VIEW QUESTION

Htaccess rewrite with parameter value – Apache

I'm looking for some help. I wanted to redirect the following paramters to another url, how can I make this possible? I have googled alot of other solutions but I fail to make this one work. https://(www).website.com/reservation#!/confirm?code=a1XapXsCmlaC0 to https://new-website.com/test/page#!/confirm?code=a1XapXsCmlaC0 Attempted…

VIEW QUESTION
Back To Top
Search