Domanda

Question is simple I want to rewrite http://www.mydomain.com/test123.com like http://www.mydomain.com/details.php?domain=test123.com

RewriteRule ^([^/]*)$ /details.php?domain=$1 [L]

Thanks.

È stato utile?

Soluzione

For your rewrite URL. You can use following .htaccess

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(index.php)?$ 
RewriteCond %{REQUEST_URI} !^/details.php$ 
RewriteRule ^(.*)$ /details.php?domain=$1 [QSA,L]

It will rewrite http://www.mydomain.com/test123.com to http://www.mydomain.com/details.php?domain=test123.com

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top