hi
how i redirect from .org to .com
ex:
my page is www.aaaa.com
i want when user write
then it will redirect automaticly to
:)
hi
how i redirect from .org to .com
ex:
my page is www.aaaa.com
i want when user write
then it will redirect automaticly to
:)
As and pointed out, you must control the .org domain before you can redirect it. Once you own it there are a few solid approaches — registrar/web‑host forwarding (easy), a server‑level redirect (fast and SEO‑friendly), or a server‑side script (works but less efficient). ’s PHP idea is valid if you host the .org, but a 301 at the webserver level is usually best for search engines and performance (see MDN: HTTP redirections).
If you host the .org, prefer a server redirect. Simple examples:
# Apache (.htaccess)
Redirect 301 / http://www.aaaa.com/ # nginx (server block)
server {
listen 80;
server_name aaaa.org www.aaaa.org;
return 301 https://www.aaaa.com$request_uri;
} For Apache’s Redirect directive and options see Apache Redirect directive.
Key practical notes and troubleshooting:
These points build on the forum replies and address common pitfalls so the redirect works cleanly for users and search engines.
Jump to Post— Ole Raptor 19do you own this .org domain?
Jump to Post— R0bb0b 344ya, you need to own that domain before you can do anything with it.
do you own this .org domain?
noo
:D
ya, you need to own that domain before you can do anything with it.
ok , after i own it
how i can redirect ??
Generally your registrar will have a free redirect service to redirect it for you or you can host the domain and apply one of the methods mentioned at these locations:
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.