sajjad27s Posted August 20, 2008 Share Posted August 20, 2008 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. Quote Link to comment https://forums.phpfreaks.com/topic/120514-serious-issue-in-url-rewriting/ Share on other sites More sharing options...
AjBaz100 Posted August 23, 2008 Share Posted August 23, 2008 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] Quote Link to comment https://forums.phpfreaks.com/topic/120514-serious-issue-in-url-rewriting/#findComment-623643 Share on other sites More sharing options...
sajjad27s Posted August 27, 2008 Author Share Posted August 27, 2008 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. Quote Link to comment https://forums.phpfreaks.com/topic/120514-serious-issue-in-url-rewriting/#findComment-626745 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.