Skip to content

Instantly share code, notes, and snippets.

@ScottPhillips
Created February 2, 2012 04:30
Show Gist options
  • Save ScottPhillips/1721489 to your computer and use it in GitHub Desktop.
Save ScottPhillips/1721489 to your computer and use it in GitHub Desktop.
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
#Redirect a sub folder to another site
Redirect 301 /subfolder http://www.domain.com/
#This will redirect any file with the .html extension to use the same filename but use the .php extension instead.
RedirectMatch 301 (.*)\.html$ http://www.domain.com$1.php
##
#You can also perform 301 redirects using rewriting via .htaccess.
##
#Redirect from old domain to new domain
RewriteEngine on
RewriteBase /
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
#Redirect to www location
RewriteEngine on
RewriteBase /
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
#Redirect to www location with subdirectory
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/directory/index.html [R=301,NC]
#Redirect from old domain to new domain with full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*) http://www.newdomain.com%{REQUEST_URI} [R=302,NC]
#Redirect from old domain with subdirectory to new domain w/o subdirectory including full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/subdirname/(.*)$
RewriteRule ^(.*) http://www.katcode.com/%1 [R=302,NC]
Rewrite and redirect URLs with query parameters (files placed in root directory)
Original URL:
http://www.example.com/index.php?id=1
Desired destination URL:
http://www.example.com/path-to-new-location/
.htaccess syntax:
RewriteEngine on
RewriteCond %{QUERY_STRING} id=1
RewriteRule ^index\.php$ /path-to-new-location/? [L,R=301]
Redirect URLs with query parameters (files placed in subdirectory)
Original URL:
http://www.example.com/sub-dir/index.php?id=1
Desired destination URL:
http://www.example.com/path-to-new-location/
.htaccess syntax:
RewriteEngine on
RewriteCond %{QUERY_STRING} id=1
RewriteRule ^sub-dir/index\.php$ /path-to-new-location/? [L,R=301]
Redirect one clean URL to a new clean URL
Original URL:
http://www.example.com/old-page/
Desired destination URL:
http://www.example.com/new-page/
.htaccess syntax:
RewriteEngine On
RewriteRule ^old-page/?$ $1/new-page$2 [R=301,L]
Rewrite and redirect URLs with query parameter to directory based structure, retaining query string in URL root level
Original URL:
http://www.example.com/index.php?id=100
Desired destination URL:
http://www.example.com/100/
.htaccess syntax:
RewriteEngine On
RewriteRule ^([^/d]+)/?$ index.php?id=$1 [QSA]
Rewrite URLs with query parameter to directory based structure, retaining query string parameter in URL subdirectory
Original URL:
http://www.example.com/index.php?category=fish
Desired destination URL:
http://www.example.com/category/fish/
.htaccess syntax:
RewriteEngine On
RewriteRule ^/?category/([^/d]+)/?$ index.php?category=$1 [L,QSA]
Domain change – redirect all incoming request from old to new domain (retain path)
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example-old\.com$ [NC]
RewriteRule ^(.*)$ http://www.example-new.com/$1 [R=301,L]
If you do not want to pass the path in the request to the new domain, change the last row to:
RewriteRule ^(.*)$ http://www.example-new.com/ [R=301,L]
#From blog.oldsite.com -> www.somewhere.com/blog/
retains path and query, and eliminates xtra blog path if domain is blog.oldsite.com/blog/
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI}/ blog
RewriteRule ^(.*) http://www.somewhere.com/%{REQUEST_URI} [R=302,NC]
RewriteRule ^(.*) http://www.somewhere.com/blog/%{REQUEST_URI} [R=302,NC]
@ysselst
Copy link

ysselst commented Sep 8, 2020

How can I force every visitor of my site to go to the only one preferred URL: https://sitename.com?
Now Google Speed Insight says there are the following redirechts:

(Initial: http://sitename.com/)
http://www.sitename.com/ | 190 ms
https://sitename.com/

Thanks for help!

@bhaktisansar
Copy link

@vasilestefirta
Copy link

@bhaktisansar you can try to use this RewriteRule in your .htaccess file:

RewriteEngine on
RewriteBase /
RewriteRule ^ac-services-in-gurgaon/?$ / [R=302,L]

This rule will match both /ac-services-in-gurgaon/ and /ac-services-in-gurgaon. If you want a permanent redirect instead of a temporary one, then use 301 instead of 302.

You can also use the .htaccess testing tool: https://htaccess.madewithlove.be/

@nathanpuls
Copy link

I wrote a little article called "Using .htaccess to forward people to “Today’s” reading." It was for a devotional our pastor wrote. I had to make it so that each day would forward to that day's devotional. It was a neat project. https://medium.com/@nathanpuls/how-to-set-up-sms-text-reminders-for-yourself-with-gmail-51380d3af010

@uearnclick
Copy link

Hi, is it possible to create a 301 redirect for the following URL string

oldpage.php free udemy Course available 100% off100% off udemy Course
And problem in uearnclickCyber security tutorial

@labeshops
Copy link

I cannot make this work.

I have a testing site of my cart software located in mysite.com/beta/v3 that somehow google indexed and were placing orders on that I knew nothing about.

So I am trying to redirect /beta/v3 to the same page on the correct domain, though I use a multistores setup so all my files are at mainstore.com though the same installation also shows as secondstore.com thirdstore.com etc which are in effect virtual domains. I cannot just redirect all /beta/v3 links to / as it would not take them to the correct store. So I need to put in the right domain name.

My cart software (opencart 3.0.3.2) uses {SERVER_NAME} as a variable in htaccess so I tried:

#Redirect from old domain with subdirectory to new domain w/o subdirectory including full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/beta/v3/(.)$
RewriteRule ^(.
) https://%{SERVER_NAME}/$1 [R,L]

but this doesn't work.

@bebo3xd
Copy link

bebo3xd commented Jan 31, 2021

Hi,
Could anyone help me with this?

Original URL:

https://domain.com/en/shop/locations?=name&....

i need to redirect it to the same everything i just want to change /shop to be:

https://domain.com/en/resturants/locations?=name&....

i have tried most of the examples above but no one worked to me..

Thanks.

@aptol1952
Copy link

Hope you can help. I have a long url which needs to go to a shorter one. there are many page associated with the original that should go to the new one, like wildcarding. Cannot seem to make this work.
origin is
https://malawitravel.org/discover-malawi/african-national-parks/parks-southern-region/regions/african-national-parks/southern-region/...(page.html)
New is:
https://malawitravel.org/discover-malawi/african-national-parks/parks-southern-region/...(page.html)

Origin / New are many pages with .html

Hope to hear from you and thank you in advance!

@jack1133
Copy link

Hi, I am hoping to get some help. I am struggling with redirecting my urls which I have 84 to do.

3 example are as below -

tillrollsonline.co.uk/index.php?id_product=12&controller=product https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls
tillrollsonline.co.uk /index.php?id_product=14&controller=product https://www.tillrollsthermal.co.uk/single-ply-paper/44x70mm-a-grade-till-rolls
tillrollsonline.co.uk/index.php?id_product=13&controller=product https://www.tillrollsthermal.co.uk/till-rolls/44x80-a-grade-till-rolls

I am going from tillrollsonline.co.uk to tillrollsthermal.co.uk

I think my problem is due to the URL having index.phpin?

I hope someone may be able to help me.

Thank you in advance.

@pitylee
Copy link

pitylee commented Feb 25, 2021

Hi, I am hoping to get some help. I am struggling with redirecting my urls which I have 84 to do.

3 example are as below -

tillrollsonline.co.uk/index.php?id_product=12&controller=product https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls
tillrollsonline.co.uk /index.php?id_product=14&controller=product https://www.tillrollsthermal.co.uk/single-ply-paper/44x70mm-a-grade-till-rolls
tillrollsonline.co.uk/index.php?id_product=13&controller=product https://www.tillrollsthermal.co.uk/till-rolls/44x80-a-grade-till-rolls

I am going from tillrollsonline.co.uk to tillrollsthermal.co.uk

I think my problem is due to the URL having index.phpin?

I hope someone may be able to help me.

Thank you in advance.

!!! Good solution

And what is the htaccess you are trying to use?

Because this is a gist about htaccess, here is how you do it with htaccess:

Redirect 301 index.php?id_product=12&controller=product https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls

I think it would be much easier, if you would store a csv or a php array in the index.php, and you did something like:

$redirects = [
    12 => 'https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls',
    13 => 'https://www.tillrollsthermal.co.uk/single-ply-paper/44x70mm-a-grade-till-rolls',
    14 => 'https://www.tillrollsthermal.co.uk/till-rolls/44x80-a-grade-till-rolls',
];

if( 
    isset($_GET['id_product']) &&
    in_array($_GET['id_product'], array_keys($redirects)) &&
    is_numeric($redirects[$_GET['id_product']])
){
    header('Location: ' . $redirects[$_GET['id_product']]);
}

I would do it with javascript or html redirect tho, since it is nicer if you redirect it in time, and show a pop-up on the old website, than redirect the user to the new website, and in the meantime tell the Google some canonical url's and schema info, plus tell it to not follow the link, and what is the new link in place; it is a good seo practice and internal backlinking.

@bond7071
Copy link

Hi, I am hoping to get some help. I am struggling with redirecting my urls which I have 84 to do.

Use htaccess redirect generator for bulk 301 redirect code generation. But add https://www to URLs for correct recognition.
As result, you will have

RewriteCond %{QUERY_STRING} ^id_product\=12&controller\=product$
RewriteRule ^index\.php$ https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls? [R=301,L]

or

RewriteCond %{QUERY_STRING} ^&*(?:id_product\=12|controller\=product)(?!.*&\1(?:&|$))(?:&+(id_product\=12|controller\=product)(?!.*&\1(?:&|$))){1}&*$
RewriteRule ^index\.php$ https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls? [R=301,L]

depending on query string match policy.

Also, possible to use PHP header 301 generator
You will have something like this:

if (isset($_SERVER['REQUEST_URI']) && parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) == '/index.php' && isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] == 'id_product=12&controller=product'){header('Location: https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls',true,301);exit();}

@pitylee
Copy link

pitylee commented Feb 27, 2021

Hi, I am hoping to get some help. I am struggling with redirecting my urls which I have 84 to do.

Use htaccess redirect generator for bulk 301 redirect code generation. But add https://www to URLs for correct recognition.
As result, you will have

RewriteCond %{QUERY_STRING} ^id_product\=12&controller\=product$
RewriteRule ^index\.php$ https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls? [R=301,L]

or

RewriteCond %{QUERY_STRING} ^&*(?:id_product\=12|controller\=product)(?!.*&\1(?:&|$))(?:&+(id_product\=12|controller\=product)(?!.*&\1(?:&|$))){1}&*$
RewriteRule ^index\.php$ https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls? [R=301,L]

depending on query string match policy.

Also, possible to use PHP header 301 generator
You will have something like this:

if (isset($_SERVER['REQUEST_URI']) && parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) == '/index.php' && isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] == 'id_product=12&controller=product'){header('Location: https://www.tillrollsthermal.co.uk/till-rolls/a-grade-paper-till-rolls/37x70mm-a-grade-till-rolls',true,301);exit();}

That my fella, is the wrong solution for my idea.
Not to be followed, good practice is a comment above that.

@myckhel
Copy link

myckhel commented Apr 2, 2021

Hello,
I hope i can finally get help over here.

i want to forward all request from old path to new path and retaining the method and queries.

OLD URL PATH:

[POST|GET|PUT|DELETE]: mydomain.com/public/api?key=value

Desired URL PATH:

[POST|GET|PUT|DELETE]: mydomain.com/api?key=value

Please can any one help me with the .htaccess code to achieve above idea.

@sebasira
Copy link

sebasira commented Jun 13, 2021

HI I'm having troubles making a redirection, and maybe you can help me.

I have two domains in the same VPS: domainOne.com and domainTwo.com. I want to redirect every user that navigates to domainTwo.com to domainOne.com, and I have this redirection (in domainTwo.com) that works perfectly fine:

Redirect 301 / https://domainOne.com/

But now I'd like to redirect everything, except the main/home of domainTwo. I mean, I will have a landing page (index.html) on domainTwo root and I one to keep it, but redirect anything else.

Thank you!

@ratebalmsoty
Copy link

When Redirect with htaccess to link the browser show ?url= in the last of link

RewriteEngine on

Redirect /elitehomespro/projects/Real-estate-for-sale-in-the-center-of-Istanbul-with-high-investment-advantages https://www.almsoty.com/5-Best-Discord-Bots-for-Your-Business

RewriteRule ^projects/([a-zA-Z0-9-أ-ا-آ-ب-ت-ث-ج-ح-خ-د-ذ-ر-ز-س-ش-ص-ض-ط-ظ-ع-غ-ف-ق-ك-ل-م-ن-ه-و-ي/]+)$ project.php?url=$1 [NC,L]

@vinznsk
Copy link

vinznsk commented Sep 18, 2021

Thanks for the example. I'm trying to implement it, but there is a weird problem I have.

https://vegan4k.com/index.html - This page shows 404 and it doesn't want to redirect to the homepage and I don't understand how to make it work.

I'm trying to add smth like:

RewriteEngine On
RewriteBase /
RewriteRule ^index.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]

But it shows 500 error. Can anybody help? Thanks!

@lightend
Copy link

lightend commented Oct 9, 2021

Hi, I need help because I am struggling with redirecting a broken link to my website page/url.

Please guide me how can i redirect this url: https://softlay.net/graphics-design/...rdu-fonts.html

To this: https://www.softlay.com/downloads/500-urdu-fonts

I am redirecting my entire old site (.net TLD) to new domain (.com TLD) and preserving url paths.

I think my problem is due to the URL having unsupported file extension (i.e "...rdu-fonts.html" instead of ".html")

I have tried "Redirect a single page" and "Redirect any file with the ...rdu-fonts.html extension" code snippets.

I hope someone may be able to help me. Thanks.

@vikasrajma
Copy link

Please help me as I'm having trouble redirecting a broken hyperlink to my site's page/url. https://www.avoid.uk.net/windows-11-download-iso/

To this https://www.avoid.uk.net/192-168-1-1/

@voicenoise
Copy link

Hello,
i changed my hosting from nginx to apache.

before i had my own cdn and cdn.domain.com are redirected to domain.com.

i try a few .htaccess redirects but always it ending with a redirect loop.
the cdn root is pointed to the main root.

is there a way to redirect the cdn.domain.com to domain.com?

thank you in advance

@mickel2022
Copy link

I don't want to manually redirect all addresses to this format .
I want all address /amp are
be guided backwards

Redirect /air/amp /air

https://jojhelp.com/

@gochi88
Copy link

gochi88 commented Sep 12, 2022

Thank you for this guide information, now I can redetect site https://relaxmodapk.com/ without any plugins, Thanks sir.🤞

@Jimmychohankhan
Copy link

I appreciate the information listed in this guide and will have no problem reidentifying https://queenapk.com/ without any plugins.

@apkzarcom
Copy link

Thank you for this guide information, now I can redetect site https://apkzar.com/ without any plugins, Thanks sir.
HOPE YOU HELP

@apkzarcom
Copy link

Thank you for this guide information, now I can redetect site https://apkyolo.com/ without any plugins, Thanks sir.

@apkzarcom
Copy link

now I can redetect site https://instamody.com/ without any plugins, Thanks sir.

@apkzarcom
Copy link

now I can redetect site https://apkrog.com/ without any plugins, Thanks sir.

@apkzarcom
Copy link

now I can site https://apkzar.co/ without any plugins, Thanks sir.

@apkzarcom
Copy link

hello this will help youmore https://nxtvillain.com

@trucaller12
This comment was marked as spam.
@marioaprea
Copy link

I would like to change document root path for sites installed in subfolder of main domain:
example
www.mydomain.com/site1
www.mydomain.com/site2
www.mydomain.com/site3

when call a page on
www.mydomain.com/site1
if would like that my document root for this site point to /site1 folder and not to www.mydomain.com folder

Thank you

@lisamathew221
Copy link

iBOMMA - Watch and Download ibomma Telugu movies from ibomma.com. Watch Telugu movies in an excellent quality at the smallest file size.

@lisamathew221
Copy link

If you’re unsure where to find a casual mate, try Doublelist app with lots of sugar babies and independent escorts. All girls are incredibly beautiful and open to experiments with a stranger.

@lisamathew221
Copy link

If you live in Berkeley, Ca., and are looking for a Berkeley moving company. Then look no further than the New Day Moving company. We are a leading Berkeley moving company and our clients are happy with our work. Call us anytime to book your schedule.

@lisamathew221
Copy link

John Patrick University's School of Integrative and Functional Medicine university offers degrees & certificates in nutritional health.

@getandroid
Copy link

It helped me a lot to redirect my website which is for download free vpn without any plugin

@allin211
Copy link

allin211 commented Jan 4, 2023

i have used all the redirects listed here including image expire headers https://findapkmod.com/

@Kiankhan01
Copy link

Download Most Mod Apk for Android ...
https://apkspicy.com/

@Kiankhan01
Copy link

If you want to download Kinemaster Pro, you can download it very easily from this goolge. We can also download it from play store. But we need no watermark and no ads. That’s why we prefer to download it from Google.

Download Kinemaster Pro Mod Apk

@deependrashilpi
Copy link

Thank you sir for such a valuable Information

@deependrashilpi
Copy link

Thanks for the information contained in this valuable Content

@saqibqt
Copy link

saqibqt commented Feb 19, 2023

Ahh, Thankyou so much for the detailed article. I have implement the .htaccess on my Software Reviews & download website with the help of this article.

@rimi887
Copy link

rimi887 commented Feb 20, 2023

Thanks for this amazing information and content, I am also love to watch YouTube content but most of the time I prefer to to watch YouTube content in [YouTube Vanced](YouTube Vanced.

)

@AskApache
Copy link

Awesome, for more advanced htaccess examples see https://www.askapache.com/htaccess/

@gbwhatapps
Copy link

YouTube is beneficial to a user and YouTubers and people. Very useful versions were updated by this YouTube channel and complemented by the all Youtube Vanced Apk Download 2023

@gbwhatapps
Copy link

FMWhatsApp Apk Download Latest Version 2023 is a modified version of WhatsApp Messenger. You can download the latest version

@jimmy14525
Copy link

Thank you for providing a platform for endless entertainment and educational content. You're a valuable part of our digital world. vanced youtube

@Upsprit500
Copy link

Thank you so much
Sir for your supportive information and expert analysis

@Tommy5412
Copy link

Tommy5412 commented Apr 26, 2023

If you are a gamer, you must try the top best Unblocked games 66 on your school websites. Those are really helpful to play this game on your school systems. Just to try the all the games on that article. You might like those games.

@Soniya87
Copy link

Soniya87 commented May 2, 2023

Thank you very much for sharing such a nice Biography, it is very useful for me and everyone else. I'll be checking out frequently to read your new post, so it's unmissable to keep up.

@Leenaa1255
Copy link

Thank you so much for the information, I like it's Free Fire game

@Tommy5415
Copy link

Hi Guys Thank you so much for giving a such nice Net Worth information.

@Rohit0266
Copy link

Hello Everyone, Sergio Carrallo is an exceptional individual, exhibiting immense dedication and talent. His unwavering commitment to his craft is evident in every project he undertakes. Sergio's creativity knows no bounds, and his attention to detail is remarkable. Sergio Carrallo Net Worth His work is a true testament to his passion and expertise. I have no doubt that Sergio Carrallo will continue to inspire and amaze me with his remarkable abilities. Keep shining, Sergio!

@gbwsdownload
Copy link

thank you for sharing Gb whatsapp download https://gbwsapp.com/

@parimal247
Copy link

Explore the features of the RTS TV Apk, its benefits, and how to download and install it on your device. Get ready to elevate your entertainment experience to new heights!

@Tools370
Copy link

Tools370 commented Aug 4, 2023

snaptube amarillo is the best app for Video editing. You can Download from snaptube amarillo

@Tools370
Copy link

Tools370 commented Aug 4, 2023

snaptube amarillo is the best app for Music.

@Tools370
Copy link

Tools370 commented Aug 4, 2023

snaptube amarillo is best one

@Connor5888
Copy link

"Absolutely loving youtube vanced, Ad-free experience and background playback make it a game-changer. No more interruptions and I can continue listening with the screen off. It's like YouTube premium for free! 🙌🎉

@NataliaItani
Copy link

Do you want to find free Music APPS in the US? So, I am providing you with the best music listening app and alternative of Spotify and SoundCloud but in free. Try yMusic and explore free native music.

@safiradara
Copy link

many thanks for sharing this post with us, and I really do hope that you will share more of your posts with us in the future, so please do not stop sharing, and I wish you the best of luck with your job teknopediia,

@gimhanr
Copy link

gimhanr commented Nov 4, 2023

Download Now: ViMusic - #1 An Open-Source Android App for Streaming Music from YouTube Music.

@cargames-unblocked
Copy link

Immerse yourself in the world of virtual motorsport, where you'll take the reins of powerful racing machines, navigate treacherous obstacles, and compete head-on with skilled rivals in a quest for dominance. Car Games

@gggodgamer
Copy link

YouTube is beneficial to a user and YouTubers and people. Very useful versions were updated by this YouTube channel and complemented by the all Youtube Vanced Apk Download 2023

YouTube Vanced is a good option, but recently I've been using the Revanced YouTube as an alternative for this Vanced APK. And I am getting an amazing experience from this new application. Try out this application once. Thanks.

@kierajuliet
Copy link

Unleash your game in style with lacrosse shorts designed for unstoppable performance and undeniable flair.

@kierajuliet
Copy link

kierajuliet commented Nov 29, 2023

Do you want to watch movies and dramas through any other app without running YouTube on your mobile? if yes then you can watch all the latest video movies and dramas with the help of this Osee.In Movies APK. And visit this APK Sheep site to download such apps.

@apkzarcom
Copy link

Good information , Thanks For Sharing us-

however the vancedapp of youtube also help me to find some helpful content like this

@relaxmody
Copy link

"This APK changed the game for me! Such a useful tool."

@apkzarcom
Copy link

yes i want tp ranked this site myfedloan

@kandreomandro
Copy link

Thanks for sharing! It's inspiring to witness the success of other women, especially those within the Dude Theft Wars community.

@jobidenn
Copy link

jobidenn commented Jan 7, 2024

Thanks for sharing i want to add it here

@farhan053
Copy link

farhan053 commented Jan 13, 2024

FM WhatsApp enhances user experience with customizable features, improved privacy settings, and an intuitive interface. A must-try for a personalized messaging journey. FM Whatsapp

@Apksheep
Copy link

Apksheep commented Feb 5, 2024

Do you want to watch different TV shows and movies on your mobile if yes then you must use this شبكتي tvمباشر app like me you can watch all the most popular arab dog channels in one place.

@Apksheep
Copy link

Apksheep commented Feb 5, 2024

WA GB APK enhances user experience with customizable features, improved privacy settings, and an intuitive interface. A must-try for a personalized messaging journey. WA GB

@alexboy45
Copy link

alexboy45 commented Feb 6, 2024

AD WhatsApp improves the user experience by adding customizable options, improving privacy settings, and providing an intuitive UI. A must-try for a customized texting experience. AD WhatsApp.

@genis77
Copy link

genis77 commented Feb 9, 2024

The structure of this blog was excellently organized, seamlessly guiding the reader from its inception to its conclusion. https://fmapps.org/ The formatting ensured a smooth transition from beginning to end, enhancing the overall reading experience. It's evident that care and thought went into its presentation.

@hrashidBI
Copy link

The cubic equation calculator is a powerful tool designed to effortlessly solve cubic equations of the form ax^3 + bx^2 + cx + d = 0. With its user-friendly interface, it provides accurate roots and real-time solutions, simplifying complex mathematical computations.

@jasmingrey19
Copy link

jasmingrey19 commented Feb 15, 2024

FM WhatsApp Apk enhances user experience with its customizable features, themes, and privacy options. The seamless blend of functionality and aesthetics makes it a standout choice for those seeking a personalized and secure messaging platform.

@Aditi5897
Copy link

One of my favorite hobbies is a Remini Mod Apk with my iPhone and then diving into the enjoyable process of editing them using editing software.

@Preethi121121
Copy link

This insight stresses FM WhatsApp's appeal through its combination of specificity, themes, and private features. It caters to people looking for a personalized and secure messaging experience, distinguishing it from traditional platforms.[
Gb Whatsapp Download

@mohexamnews
Copy link

I implented this "Redirects for .htaccess" for our website Moh Exam News, and it worked quite well.

@AngeHill
Copy link

Thanks for sharing, But I'm using Blue WhatsApp, which has different features and functionalities compared to the standard version.

@wetwert
Copy link

wetwert commented Mar 5, 2024

let me check instapro apk and blue whatsapp apk.

@MelissaMartinY
Copy link

You can try app for CFMS Bill Status, it's an amazing app with multiple features as other apps and it's updated with useful functions as well.

@Preethi121121
Copy link

CFMS Bill Status app seems promising with its multiple features and regular updates for added functionality.Gb Whatsapp

@Majoo999
Copy link

If you're super curious about you're privacy and want to use enhanced features then must you FM Whatsapp which gives various new features like customization of themes. Besides these; you may add more than one account which helps you to keep your privacy safe.

@tarunkate
Copy link

A mixed number to decimal calculator seamlessly converts mixed numbers, which consist of an integer and a fraction, into decimal form, facilitating easier calculation and comparison. This tool is invaluable for students, educators, and professionals dealing with mathematical, financial, or technical computations requiring precision and clarity.

@Apksheep
Copy link

Have you ever played the Mobile Legend game? If yes then tell me What tool do you use? Well, I have found that Choox Sega is quite good for MLB.

@Nadinee77
Copy link

How to use Insta Pro

@iftimania1
Copy link

looks like good redirects, share code on whatsapp gold

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment