Answer the question
In order to leave comments, you need to log in
Windows Server 2008, Drupal 7, Pathauto issue?
Hello!
There is the following configuration:
Windows Server 2008 R2
PHP 5.3
Mysql
Drupal 7 (I installed it myself)
As a result, we have a working site, clean links ( mysite/user opens well), but alias links created by pathauto do not work.
The site is in a subdirectory.
Where to dig? Thanks in advance!
Answer the question
In order to leave comments, you need to log in
So, the complete solution (it is assumed that PHP, MySQL, Drupal are already installed on IIS):
1. Install URL rewrite
2. Install Fast CGI
3. Put a hotfix on URL rewrite support.microsoft.com/kb/2277918
4. Fix Cyrillic URLs with aliases. Go to bootstrap.inc on line 1543
return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
if (drupal_validate_utf8($text)) return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
return htmlspecialchars($text, ENT_QUOTES);
'location' => $log_entry['request_uri']
'location' => urlencode($log_entry['request_uri']),
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question