Я новичок в apache, у меня следующая структура каталогов:
html
|-- moodle
|-- singapur
|-- app
|-- public
|-- js
|-- css
|-- img
|-- index.php
Мне нужно перенаправить с www.mywebpage.com/singapur
к www.mywebpage.com/singapur/public
в .htaccess
находится в папке singapur
является:
Options -Indexes
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /singapur/
RewriteRule .* public/$1 [L]
</IfModule>
в .htaccess
находится в папке public
является:
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /singapur/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
Файл moodle.conf
:
<VirtualHost *:80>
ServerName webpageexample.cl
ServerAlias www.webpageexample.cl
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/moodle
<Directory /var/www/html/moodle/>
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Но когда я пытаюсь получить доступ к webpageexample.cl/singapur
из веб-браузера я получаю следующее
Forbidden
You don't have permission to access /singapur/ on this server.
в журнале apache:
Cannot serve directory /var/www/html/moodle/singapur/: No matching DirectoryIndex (index.html,index.cgi,index.pl,index.php,index.xhtml,index.htm) found, and server-generated directory index forbidden by Options directive
Спасибо
Вы можете использовать RedirectionMatch
директива, чтобы заставить Apache отправить пользователя в другое место.
RedirectMatch 301 ^(.*)$ http://www.anotherserver.com$1
Нажмите Вот для получения дополнительных знаний.