solved and thank you. another question, how to configure .htaccess to enable rewrite mode?
What do you want to rewrite? I don’t understand what your mean clearly.
I’d like to remove index.php that follow the domain, for example, rewrite http://2011.hbccsc.org/index.php/vip/professors/sunjianheng to http://2011.hbccsc.org/vip/professors/sunjianheng
You try this way. You add this code into .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.php/$1
</IfModule>
This topic contains 20 replies, has 2 voices, and was last updated by clarkyu 13 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum