2

Hi I want to remove the index.php in my url. I tried alot of methods but none of them work. All of them reponse 500 error or could not find folder. any one can help me please. I just use normal joomla page dont have any thing special but removing index.php seem impossible to me

This is link to my website http://www.website.com/index.php/vn/ I am using joomla 2.5

Hi i fixed it. on some sever we have to do a little modified to the htaccess not just remove .txt and add . in front of it.

In my case, I need to add . in to the line "RewriteBase /" => "RewriteBase /."

Duc Phan
  • 175
  • 1
  • 3
  • 14

2 Answers2

7

What you are looking for is an option to turn on search engine friendly URLs. To completely get rid of "index.php" you need to be running Joomla on Apache server.

  1. Rename "htaccess.txt" file in your root Joomla directory to ".htaccess".
  2. Site > Global Configuration > Site > SEO Settings and set these settings:

Search Engine Friendly URLs - Yes Use URL rewriting - Yes Adds Suffix to URL - No Unicode Aliases - No

Insider Pro
  • 748
  • 7
  • 17
  • Only the first two options are needed. The others: "Yes Adds Suffix to URL - No" and "Unicode Aliases - No" won't have effect on making index.php appearing or not appearing. – marcanuy Jun 26 '13 at 23:19
  • Please see: http://stackoverflow.com/questions/4365129/htaccess-remove-index-php-from-url for further explanation and locate the line commencing with "RewriteEngine On" in your joomla_root/.htaccess file - hope it helps, Gez – JoomGuy Jun 27 '13 at 22:15
1

on some sever we have to do a little modified to the htaccess not just remove .txt and add . in front of it.

In my case, I need to add . in to the line "RewriteBase /" => "RewriteBase /."

Duc Phan
  • 175
  • 1
  • 3
  • 14