A site has an existing system (lets call it mysite) and the client asks to put in magento.
Benim dizin yapısı böyle bir şey gider:
ROOT       
   -index.php (this is the app's main controller)
   -.htaccess
   /blog (runs wordpress)
   /assets (current system's media folder)
   /magento (this is where all magento files go)
Ben magento kurmak ve taban URL http://example.com, magento kadar yükler mysite olduğu kurulumda belirtirseniz sorundur.
Leaves me no choice but to setup magento with base URL set to http://example.com/magento/ and it runs perfectly.
However the client wants me to feel hell and asks me to hide magento in the URL.
. Gerçekten htaccess tecrübeli değilim ve ben bu yüzden /magento magento klasörüne ile geldi ile başlayan herhangi bir HTTP isteklerini iletme denedim sadece basit bir yeniden yazma kodları biliyor:
RewriteCond %{REQUEST_URI} !^/magento(.*)
RewriteRule (.*) /magento/$1 [L]
Bu çalışma olduğunu düşündüm sadece zaman, mysite Tüm unaccessible oldu ve magento sisteme iletir 404 sayfası görüntüleniyor bağlar.
Yani, uhm, ben aka mevcut sistemi etkilemeden URL'ler /magento/ gizlemek için. Htaccess oluşturmak için nasıl yardım isteyin mysite?