Reputation: 681
My url
site.com/index.php/Article/ArticleList
I want to be it
site.com/Article/ArticleList
I didn't it. How rewrite htaccess
Upvotes: 0
Views: 27
Reputation: 41219
Try this rule :
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/([^/]+)/?$ /index.php/$1/$2 [NC,L]
Upvotes: 1