У меня проблема в направлении URL-адресов.
Я создаю новый URL-адрес в xampp
pro_mvc.com
и хочу написать в.Получите доступ к этому коду
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /mvc_pro/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
, и у меня есть открытый доступ в mvc_pro в моем htdocs:
C:\xampp\htdocs\mvc_pro\public
, и я создаю свой mvc_pro.com скорее localhost в
C:\Windows\System32\drivers\etc\hosts
с этим кодом
127.0.0.1 mvc_pro.com
и в apache код находится в
C:\xampp\apache\conf\extra\httpd-vhosts.conf
, имеют
<VirtualHost *:80>
DocumentRoot "C:\xampp\htdocs\mvc_pro"
ServerName mvc_pro.com
</VirtualHost>
, если я хочу написать что-нибудь после mvc_pro.com/Публичный, как mvc_pro.com/public/qwjleqweuqwe, он не превращает меня в index.php ", и у меня есть этот файл в моем пути", почему он говорит мне
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
mvc_pro.com
Apache/2.4.34 (Win32) OpenSSL/1.1.0i PHP/7.2.10
еще раз спасибо!