Jump to content

Serious issue in URL rewriting


sajjad27s

Recommended Posts

Hi

 

I need to implement a rewrite rule like this.

 

If user enters this:

 

http://www.mywebsite.com/anydomain.com

 

then I need this URL to rewrite in

 

http://www.mywebsite.com/mypage.php?d=anydomain.com

 

 

(NOTE: anydomain.com can be any domain name or any tld.)

 

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/120514-serious-issue-in-url-rewriting/
Share on other sites

maybe this would work.     

 

        RewriteCond    %{HTTP_HOST}  ^mywebsite.com [OR]

        RewriteCond    %{HTTP_HOST}  ^www.mywebsite.com

        RewriteCond    %{REQUEST_URI}  ^/([A-Za-z0-9-]+).com$

        RewriteRule    ^(.*)$          /mypage.php?d=%1 [L]

 

Its working but it eats up the tld from domain name for example if I type

 

mywebsite.com/yahoo.com

 

then it only returns    yahoo    and  .com    is lost somewhere.

 

 

Secondly I need to implement single rule for every TLD available. I cannot add 1 rule per domain type.

 

 

 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.