Hi there,
I want my visitor to just enter a direct link let say:
As I upload my file at
I just want the link in 1... point to 3... and 2... point to 4... respectively with rewrite, is it possible?
I try the following code:
But it gave me only a headache... 500 Internal server error
What can I do or do I miss something? 
Thx.
I want my visitor to just enter a direct link let say:
Code Select
1... mydomain.sth/internet-miku-yoyo.html or
2... mydomain.sth/semm-miku.html
As I upload my file at
Code Select
3... mydomain.sth/doc/int_miku/internet-miku-yoyo.html or
4... mydomain.sth/doc/int_miku/semm-miku.html
I just want the link in 1... point to 3... and 2... point to 4... respectively with rewrite, is it possible?
I try the following code:
Code Select
RewriteEngine On
RewriteBase /
RewriteRule ^(.+)miku(.+)\.html$ doc/int_miku/$1miku$2.html [L]
But it gave me only a headache... 500 Internal server error


Thx.