Вопрос

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.

Это было полезно?

Решение

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top