I wrote the following rules in .htaccess
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com RewriteCond %1 !^www$ [NC] RewriteCond %{REQUEST_URI} ^/news/news-details\.php$ RewriteRule (.*) news.php?div=%1
What he does is pass the request to the news.php file with a div variable equal to news/news-details.php
. I don't need a div to be like that. I need the value of the subdomain written in the domain, for example, if the user comes from user.domain.com/news/news-details.php
. I need the div variable in the news.php file for the user ie news.php?div=user
.
EDIT: Now here is the Htaccess code. This causes a problem for the root news page. Options
+FollowSymLinks RewriteEngine on
AGAIN IMAGES:
These two rules conflict here.
source share