Помогите настроить .htaccess
Добавлено: 2010-10-10 9:13:57
Требуется преобразовать
делаю .htaccess
конфиг хоста
В итоге получаю
что не так делаю, подскажите пожалуйста?
Код: Выделить всё
?page_id=2 -> company
?page_id=3 -> news
?page_id=4 -> production
?page_id=5 -> clients
?page_id=8 -> publicationsКод: Выделить всё
RewriteEngine on
RewriteBase /
RewriteRule ^/company(.*)$ /index.php?page_id=2 [L]
RewriteRule ^/news(.*)$ /index.php?page_id=3 [L]
RewriteRule ^/production/$ /index.php?page_id=4 [L]
RewriteRule ^/clients/$ /index.php?page_id=5 [L]Код: Выделить всё
<VirtualHost *>
ServerName site.domen.com
ServerAdmin lor@gmail.com
DocumentRoot /usr/local/www/plasticcard/
DirectoryIndex index.php index.html
<Directory "/usr/local/www/plasticcard/">
Options FollowSymLinks
Options ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
ErrorLog /var/log/apache2/plasticcard/error_log
</VirtualHost>Код: Выделить всё
Forbidden
You don't have permission to access / on this server.