Mobile app version of vmapp.org
Login or Join
Karen161

: I think you can solve this with mod_rewrite. Inside your root directory (generally public_html), place a .htaccess file with the following content: # Turn on URL rewriting RewriteEngine On #

@Karen161

I think you can solve this with mod_rewrite.

Inside your root directory (generally public_html), place a .htaccess file with the following content:

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /
#Redirecting
RewriteCond %{REQUEST_URI} ^www.mysite.org/stats/$ [NC]
RewriteRule (.*) mysite.org/awstats/awstats.pl?config=awstatsconffile.org - [L]


I'm not good at regex, so you may need to escape/unescape some characters, but that's the way.

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Karen161

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme