Как правильно настроить mod_rewrite при использовании CakePHP?
Поначалу это может показаться дублирующим вопросом, но я провел 10 часов исследований в Интернете и перепробовал почти все, что нашел, но не повезло с переписыванием модов. Большинство постов / уроков в интернете старые и с тех пор они не обновляли свою статью.
Я могу видеть с phpinfo()
, что я успешно загрузил mod_rewrite
модуль.
Далее я знаю, что я должен изменить AllowOverride None
в AllowOverride All
и еще несколько изменений на Apache default.conf
файл. Так как у меня нет default.conf
файл, который я сделал эти изменения на000-default.conf
, но mod_rewrite
не работает Я также изменил apache.conf
файл, он все еще не работал. Я изменил все файлы, где я могу видеть <Directory> </Directory>
но это не сработало.
Мой корневой каталог не /var/www
на самом деле это /var/www/html
,
Вот мой 000-default.conf
файл:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Как я могу получить mod_rewrite
работать?
1 ответ
Проблема решена. Это проблема с CakePHP. Файл.htaccess корневого каталога не копировался вместе с исходным файлом cakePHP.
Создайте файл.htaccess в корневом каталоге CakePHP с этим содержимым.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
Ссылка: https://stackoverflow.com/questions/10835344/cakephp-doesnt-work-url-rewriting-on-ubuntu