<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
任何機構可以解釋我的htaccess如何通過上述規則適用 例如如果我有URL http://mydomain/edituser 等什麼PHP腳本將匹配給定的URL如何解決下面的htaccess代碼
前面我寫的每一個給定的URL 但在上述情況下,不同的規則,我怎麼知道巫PHP腳本獲得運行 請幫我
謝謝@Joe我是新來的,我不知道如何在提問時格式化文本。再次感謝。 – Abhijeet
@Abhijeet - 很好,這是一個非常面向社區的網站。有一天你會解決別人的問題! – Joe