mehmetakkus
mehmetakkus

Reputation: 681

How to do rewrite this URL?

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

Answers (1)

Amit Verma
Amit Verma

Reputation: 41219

Try this rule :

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^([^/]+)/([^/]+)/?$ /index.php/$1/$2 [NC,L]

Upvotes: 1

Related Questions