roelpaulo93
New Member
- Messages
- 17
- Reaction score
- 0
- Points
- 1
here is my .htaccess file...
RewriteEngine On
RewriteBase /
RewriteRule ^article/(.*)/(.*) index.php?article=$1&alias=$2 [L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule . /index.php [L]
It says when you click on this -> http://roelpaulo.tk ...
Forbidden
You don't have permission to access / on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
All I wanted was this to show in the URL was this...
http://roelpaulo.tk/article/1/the-title-of-the-article.html
Not like this...
http://roelpaulo.tk?article=1
Any help out there, I'm really confused...
RewriteEngine On
RewriteBase /
RewriteRule ^article/(.*)/(.*) index.php?article=$1&alias=$2 [L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule . /index.php [L]
It says when you click on this -> http://roelpaulo.tk ...
Forbidden
You don't have permission to access / on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
All I wanted was this to show in the URL was this...
http://roelpaulo.tk/article/1/the-title-of-the-article.html
Not like this...
http://roelpaulo.tk?article=1
Any help out there, I'm really confused...