마젠토를 이용하다보면.
http://www.aus-wellbeing.com.au/index.php/vitamins/women-s-health.html
요렇게 url 사이에 INDEX.PHP다 들어가는 것을 알 수 있어요.
보기싫죠!
지워야죠~!
생각보다 간단하네요
1. admin 로그인 하셔서 configuration > web 탭으로 가서
하이라이트한 두곳을 yes로 바꾼 후 저장합니다.
- Search Engines Optimization Use Web Server Rewrites
- Secure Secure URLs in Frontend
2. ftp에 접속하셔서 마젠토가 루트폴더에 설치되어있다면
.htaccess 에 아래 코드를 추가합니다.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
만약 루트안의 /magento 라는 폴더에 설치되어있다면
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /magento /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /magento /index.php [L]
</IfModule>
간단하죵~~~!
오늘 당장 바꿔봐요!!
'Web Solution' 카테고리의 다른 글
프레스타샵 설치 후 샘플 데이타 삭제 (0) | 2014.09.26 |
---|---|
구글 검색 등록 및 사이트 등록 (0) | 2014.09.07 |
마젠토 1.9 Ajax Toolbar - 사용안했음 (0) | 2014.09.02 |
마젠토 나의 계정 목록 수정하기 (0) | 2014.09.01 |
포스트 및 페이지에 공유버튼 플러그인 (0) | 2014.08.28 |