how to remove particular folder name from URL using htaccess - .htaccess

I have an URL :
http://localhost/HeapShop/admin/pages/create-users.php/
I need to change this URL to :
https://localhost/heapshop/admin/create-users.php/
Need to remove pages (Folder Path) from URL.

Related

Remove a specific file name using from url and subdirectory

My site url is like
https://website.com/folder1/folder2/file111.php
I want to rewrite that url to
https://website.com/folder2/
i want to remove specific file name (file111.php) with extension and remove subdirectory folder2
i found solution on the site but didn't work with me

redirect url path from path to another using .htacess

I want to redirect my url from one path to another
My website url : www.example.com/signup/generate/dashboard/index.php
but I want my website url as : www.example.com/login
how can I achieve this using .htaccess

URL redirection in htaccess

Current URL is
http://example.com/news/club/teamname
(Actual file is in this path only need to change URL)
I want to changed to
http://example.com/team/teamname
Using htaccess, its a wordpress site. I can't change the permalink.

.htaccess redirect old domain to new domain

I use from http://siteold.com/json/ in my application and can not change it.
and my new domain is http://panel.sitenew.com/json/ . how redirect my old url to new url without change in application ?
this way does not work (in siteold.com) :
RewriteEngine On
Redirect http://siteold.com/json/ http://http://panel.sitenew.com/json/
I don't think it is possible to redirect a URL to another URL. You will have to create a htaccess.txt file to the directory of the website you want to redirect, and then use this code
Redirect /siteold.com/json/ http://panel.sitenew.com/json/
This will redirect the old file path to the new file path. You cannot add http:// to the origin domain as the code doesn't work like that.
Source

.htaccess url-rewriting for hiding directory

I want to know, what to write in my .htacess file for rewriting my urls.
I want :
* folder pointed : exemple.com/subfolder
* And the visible url : exemple.com/
Corrections:
I have my domain exemple.com pointing to public_html directory. My website is on exemple.com/subfolder. I want to go to the url exemple.com, I want it to show the content of exemple.com/subfolder but with exemple.com shown as url
Thank you

Resources