Skip to main content

Command Palette

Search for a command to run...

DirectoryIndex vs RewriteEngine

Updated
1 min read
K

Khanh is a full stack web developer with over 15 years of experience developing for the web

Tôi dùng modRewrite cho site hanhnguyenhotel.com. Mọi chuyện đều ổn nếu như thằng Kid không yêu cầu có cái trang intro (index.html). Mặc dù tôi đã để default file là index.html nhưng vẫn không ăn thua:

Options -Indexes DirectoryIndex index.html index.php RewriteEngine on RewriteCond $1 !^(index\.html|modules|robots\.txt) RewriteRule ^(.*)$ index.php?mod=$1 [L,QSA]

Chính xác thì phải thế này:

Options -Indexes

DirectoryIndex index.html index.php

RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond $1 !^(index\.html|modules|robots\.txt) RewriteRule ^(.*)$ index.php?mod=$1 [L,QSA]

Okie, work fine!!!

More from this blog

K

Khánh's blog

146 posts