v2.5.2
Giriş yap

react-router-dom ile yaptığım alt dizin (/blog) çalışmıyor

enesgkky
176 defa görüntülendi

react-router-dom ile yaptığım alt dizin (/blog) çalışmıyor

React ile bir web site geliştirdim. Sitenin buildini aldım ve web hostingime yükledim. Ama '/blog' yönlendirmesine gidince 404 hatası alıyorum.

Cevap yaz
Cevaplar (1)
rustemxyzdn
193 gün önce

cpanelinde .htaccess diye bir dosya olucak ona şu kodu yapıştır

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]
</IfModule>