简体   繁体   中英

URL rewrite: rewrite website name php

I didn' try anything. But i want to clear one question. I have a link www.abc.com/meeting/ Is it possible to rewrite abc to my own words eg: www.myown.com/meeting/

Is it possible with URL rewriting

This is the dynamic version which will redirect all the url to specified domain. So www.abc.com/* will be redirected to www.myown.com/*

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.abc.com/.$ [NC]
RewriteRule ^(.*)$ http://www.myown.com/$1 [R=301,L]

Make sure your Apache have enabled option Rewrite mode

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^abc.com/meeting/.*$ http://www.myown.com/meeting/ [R=301,L]

Use this code in filename as .htaccess save this file in your root folder allow .htaccess file in your server. In xampp it bydefault activated

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM