1 hi ,我想實現以下的規則:
所有的請求定位到index.php
所有的資源(圖片css啊之類的)直接存取
我的.htaccess 該怎麼寫呢? ? ? ?
世界只因有你2017-05-16 17:02:57
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,PT,L]
</IfModule>
Cond 是這樣的。如果存在該檔案或資料夾,那麼直接存取。
OK,不存在,則進行Rule 重寫,全部指向到index.php