Mod_rewrite access???

Status
Not open for further replies.

SaBteCh

Banned
Banned
529
2010
0
0
So here is a quote of a tutorial which requires me to access mod_rewrite which i dunno how...PLease help


For this method, you need to be running the Apache web server and have the ability to define mod_rewrite rules for it.


Configure Apache
These are the rewrite rules I use for this site (keep in mind that the ServerAlias directive will only work in the Apache config file for your site, and will not work in an .htaccess file; also make sure your DNS is resolving the new sub-domain properly):
 
6 comments
You need to enable mod_rewrite via editing httpd.conf and uncommenting the "mod_rewrite" line ...

While you make your site mod_rewrite links via .htaccess
 
check phpinfo() to see if allowoverride is enabled and mod_rewrite.c is loaded as part of the configuration...

after that, you should be able to do everything from a .htaccess - remember to include:

Code:
Options +FollowSymLinks
RewriteEngine On
 
Status
Not open for further replies.
Back
Top