سلام دوستان
یه مشکلی برایه من پیش اومده که چند روزیه دستم رو بند کرده
یه پروژه باز دارم که از rewrite برای لینک صفحاتم استفاده کردم و کدهای زیر رو داخل htaccess قرار دادم و هیچ مشکلی نداشت و بهم جواب میداد بعد از تغییر ویندوز همین فایلها دیگه بهم جواب نمیدند و خطای not found میده (دنیال مسیر میگرده)
ممنون میشم اگر کسی میتونه بهم کمک کنه
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# ( [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] ... will be redirected to [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] ...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# ( [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] ... will be redirected to [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] ...)
# uncomment and adapt the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
#
# If your site is running in a VirtualDocumentRoot at [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] ,
# uncomment the following line:
# RewriteBase /
# Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
# $Id$