[HELP] whats wrong with my .htaccess

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [HELP] whats wrong with my .htaccess

    can you help me in this code?
    Options +FollowSymLinks
    RewriteEngine On
    RewriteRule ^download/([a-zA-Z0-9-\s]+)$ xml_api.php?ext=$1
    RewriteRule ^download/([a-zA-Z0-9-\s]+)/([a-zA-Z0-9-\s]+)/([a-zA-Z0-9-\s]+)\.htm$ xml_api.php?q=$1&ext=$2&search=$3

    not working in http://mobilizeph.tk
    my .htaccess is located inside public_html. Thanks in advance.

    #2
    some servers wont allow full mod rewrite rules
    try:
    PHP Code:
    RewriteEngine On
    RewriteRule 
    ^download/([a-zA-Z0-9-\s]+)$ xml_api.php?ext=$1
     RewriteRule 
    ^download/([a-zA-Z0-9-\s]+)/([a-zA-Z0-9-\s]+)/([a-zA-Z0-9-\s]+)\.htmxml_api.php?q=$1&ext=$2&search=$

    Comment


      #3
      ah, I'm using 000webhost, and I found this page Free Web Hosting with PHP, MySQL and cPanel thanks for reply :D

      Comment


        #4
        Hello something else, still no luck
        PHP Code:
        RewriteEngine On
        RewriteBase 
        /
        RewriteRule ^download/(.*)$ /xml_api.php?ext=$1
        RewriteRule 
        ^download/(.*)/(.*)/(.*)\.htm$ /xml_api.php?q=$1&ext=$2&search=$
        Here: Free Mobile Downloads Search - MobilizePH

        Comment

        Working...
        X