n000bie Posted October 15, 2009 Share Posted October 15, 2009 Can I use mod rewrite for html files also ? i got a page named http://www.mysite.com/page_consulting.html i want to rename it to http://www.mysite.com/consulting Is it possible ? Quote Link to comment Share on other sites More sharing options...
trq Posted October 15, 2009 Share Posted October 15, 2009 Of course its possible. mod_rewrite rewrites urls based on patterns. Quote Link to comment Share on other sites More sharing options...
godwisam Posted October 15, 2009 Share Posted October 15, 2009 Hi, Please try the following steps, [*]Please make the anchor link like this "<a href="http://www.mysite.com/consulting "> Any Name </a>" [*]We can have the .htaccess file please put the following coding inside the .htaccess file RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} -f [NC,OR] RewriteCond %{REQUEST_FILENAME} -d [NC] RewriteRule .* - [L] RewriteRule ^consulting+$ index.php?consulting=$0 Thanks & Regards http://www.joomla-web-designer.com Joomla Custom Template Design, Hire PHP & MySql Programmer, Hire LAMP Programmer http://www.joomla-web-developer.com Joomla Web Redesign Services, Joomla CMS Development, Joomla Ecommerce Web Maintenance Solution Quote Link to comment Share on other sites More sharing options...
n000bie Posted October 15, 2009 Author Share Posted October 15, 2009 @godwisam I pasted all the codes RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} -f [NC,OR] RewriteCond %{REQUEST_FILENAME} -d [NC] RewriteRule .* - [L] RewriteRule ^consulting+$ index.php?consulting=$0 I get a error it says 500 internal server error and this message Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. I renamed all files extension to .php but there is only header and footer includes. Is this the reason for the error . I am confused. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.